write a program in python to display the table of a given number by user (10 times)
Right answer will be marked BRAINLIEST
Answers
Answered by
0
Answer:
Here you go. I hope this is acceptable!
Explanation:
num = int(input("Enter the number: "))
print("Multiplication Table of", num)
for i in range(11):
print(num,"X",i,"=",num * i)
Output:
Attachments:
Similar questions