Q:

Python program to print table of number entered by user

belongs to collection: Python basic programs

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python basic programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Python program to calculate currency notes require... >>
<< Python program to demonstrate logical errors...