WRITE A PYTHON CODE TO PRINT THE MULTIPLICATION TABLE OF A NUMBER
Answers
Answered by
3
ANSWER :-
#python code to print the multiplication table
N = int(input("Enter the number"))
k = 1
while k<=10 :
print(N, '×', k, '=', N*k)
k+=1
Similar questions
Physics,
6 months ago
Math,
6 months ago
Hindi,
1 year ago
Social Sciences,
1 year ago
English,
1 year ago