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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Python program to print table of number
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer