Computer Science, asked by vk162910, 4 months ago

Write a python program to input any integer number and display its table​

Answers

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