Computer Science, asked by eniyan2092007, 13 days ago

write a python program to print the multiplication table of 4​

Answers

Answered by vmehto291
12

Answer:

Python Program to Display the multiplication Table

1)num = int(input("Show the multiplication table of? "))

#2)using for loop to iterate multiplication 10 times.

3)for i in range(1,11):

4)print(num,'x',i,'=',num*i)

Similar questions