Computer Science, asked by satvikb52, 1 month ago

12. Write a program to print table of a number(accepted from user) in python​

Answers

Answered by sukhwinderm9
1

Python Program to Display the Multiplication Table

num = int(input(" Enter the number : "))

# using for loop to iterate multiplication 10 times.

print("Multiplication Table of : ")

i in range(1,11):

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

I hope it's helpful for you!!

Similar questions