Robotics & Artificial Intelligence

Write a Python program to print the table of a given number by using a function.

Python Functions

1 Like

Answer

def print_table(n):
    for i in range(1, 11):
        print(n, "x", i, "=", n * i)

num = int(input("Enter a number: "))
print_table(num)

Output

Enter a 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

Answered By

3 Likes


Related Questions