Python Function Program with argument and without return value
This type of function has one or more input arguments but does not have any value to return to the main program.
Write a program to input a number and print its table up to 10 terms.
Program:
def table(num):
for i in range(1, 11):
print(num, 'x', i, '=', num*i)
return
n = int(input("Enter number: "))
table(n)
Output:
Enter number: 5
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50