Python program to display multiplication table of any number
Display The Multiplication Table Of Any Number
Steps to display the multiplication table
- First we take the input from the user.
- Then we iterate the for loop to 1 - 10.
- Then we multiply the number by for loop.
- And lastly we print the multiplication table.
Program:
number = int(input("Enter the number")
for i in range(1, 11):
print(number, 'x', i, '=', number*i)
I really appreciate your work which you have shared here about the Free Multiplication. The article you have shared here is very informative and the points you have mentioned are very helpful. Thank you so much.Free Multiplication Games