Write a Python program to create the multiplication table (from 1 to 10) of a number.
Topic: Write a Python program to create the multiplication table (from 1 to 10) of a number.
Solution
n = int(input("Input a number: ")) for i in range(1,11): print(n,'x',i,'=',n*i)
List all Python Programs