Write a python program to get multiplication table of 26 .
Answers
Answered by
12
Python program to print multiplication table:
num = int(input("Enter the number: "))
print("Multiplication Table of", num)
for i in range(1, 11):
print(num,"X",i,"=",num * i)
Enter the number: 23
Answered by
5
Similar questions