Write a python program to input any integer number and display its table
Answers
Answered by
2
Answer:
Python, you can make a program to display the multiplication table of any number.
...
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
Chemistry,
2 months ago
Math,
2 months ago
Science,
4 months ago
Math,
4 months ago
Social Sciences,
10 months ago