Computer Science, asked by mistymukherjee27, 8 months ago

WRITE A PYTHON CODE TO PRINT THE MULTIPLICATION TABLE OF A NUMBER​

Answers

Answered by Anonymous
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