Answer to Question #229961 in Python for Assignment

Question #229961
Write a python program using For loop that reads a number from the user and prints the multiplication table of that number [Upto 10].
1
Expert's answer
2021-08-29T00:57:25-0400
num = int(input("Enter the number: "))

print("Multiplication Table of", num)
for i in range(1, 11):
   print(num,"X",i,"=",num * i)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS