# Multiplication table (from 1 to 10) in Pythonnum=12# To take input from the user# num = int(input("Display multiplication table of? "))# Iterate 10 times from i = 1 to 10foriinrange(1,11):print(num,'x',i,'=',num*i)
Python Program to Display the multiplication Table | Ecency