Python program to display multiplication table of any number

Display The Multiplication Table Of  Any Number




Steps to display the multiplication table

  1. First we take the input from the user.
  2. Then we iterate the for loop to 1 - 10.
  3. Then we multiply the number by for loop.
  4. 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)


Next Post Previous Post
1 Comments
  • Laura Bush
    Laura Bush March 4, 2021 at 9:09 PM

    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

Add Comment
comment url