Computer Science, asked by nidakhan9942, 4 months ago

Write a Python program to print the table of a given number 5.

Answers

Answered by Anonymous
2

Explanation:

Python Program to Display the multiplication Table

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

# using for loop to iterate multiplication 10 times.

for i in range(1,11):

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

Similar questions