Home »
Python »
Python programs
Python program to print table of number entered by user
Here, we are going to write a Python program to print table of number entered by user.
Submitted by Shivang Yadav, on March 01, 2021
Table of a number is its multiples from 1 to 10.
Example:
7 x 1 = 7
7 x 2 = 14
7 x 3 = 21
7 x 4 = 28
7 x 5 = 35
7 x 6 = 42
7 x 7 = 49
7 x 8 = 56
7 x 9 = 63
7 x 10 = 70
Python program to print table of number
n=int(input("Enter The Number : "))
i=1
while(i<=10):
t=n*i
print(n,"x",i,"=",t)
i=i+1
Output:
Enter The Number : 5
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50
Python Basic Programs »
ADVERTISEMENT
ADVERTISEMENT