Python Program to Display the multiplication Table
num = int(input("Enter number: ")) for i in range(1, 11): print(num, 'x', i, '=', num*i)
Output:
Enter number: 6 6 x 1 = 6 6 x 2 = 12 6 x 3 = 18 6 x 4 = 24 6 x 5 = 30 6 x 6 = 36 6 x 7 = 42 6 x 8 = 48 6 x 9 = 54 6 x 10 = 60
Write a python program to print table from 1 to 20.
for i in range(1,21):
for j in range (1,11) ;
print('{0}*{1}={2}'.format(i,j,i*j))
Output:
1x1=1
1x2=2
;
;
;
;
20x1=20
20x2=40
:
:
:
20x20=400
Python Program to Display the multiplication Table Video
Comments