F How to calculate Multiplication Table using Python? | CodeTheta

How to calculate Multiplication Table using Python?

June 12, 2018

Code :
number = int(input("Enter a number: "))
for i in range(1,11):
    print(number,'X',i,'=',number*i)

Output :
Enter a number: 18
18 X 1 = 18
18 X 2 = 36
18 X 3 = 54
18 X 4 = 72
18 X 5 = 90
18 X 6 = 108
18 X 7 = 126
18 X 8 = 144
18 X 9 = 162
18 X 10 = 180

IDE Used To Test This Code : Python IDLE.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.

Post a Comment