write a program to print the table of an entered number in python
Answers
Answered by
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
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