12. Write a program to print table of a number(accepted from user) in python
Answers
Answered by
1
Python Program to Display the Multiplication Table
num = int(input(" Enter the number : "))
# using for loop to iterate multiplication 10 times.
print("Multiplication Table of : ")
i in range(1,11):
print(num,'x',i,'=',num*i)
I hope it's helpful for you!!
Similar questions