programming-examples/python/_Basics/Python Program to Display the multiplication Table.py
2019-11-15 12:59:38 +01:00

11 lines
265 B
Python

''' Python program to find the
multiplication table (from 1 to 10)'''
num = 12
# To take input from the user
# num = int(input("Display multiplication table of? "))
# use for loop to iterate 10 times
for i in range(1, 11):
print(num,'x',i,'=',num*i)