Computer Science, asked by alpha01234, 1 month ago

write a program to print the table of an entered number in python​

Answers

Answered by Anonymous
3

Answer:

Python Program to Display the multiplication Table

num = int(input("Show the multiplication table of? "))

# using for loop to iterate multiplication 10 times.

for i in range(1,11):

print(num,'x',i,'=',num*i)

Explanation:

Answered by Anonymous
0

Answer:

Python Program to Display the multiplication Table

num = int(input("Show the multiplication table of? "))

# using for loop to iterate multiplication 10 times.

for i in range(1,11):

print(num,'x',i,'=',num*i)

Similar questions