Loading, please wait...

Program to Display the multiplication Table | Python

Mar 17, 2021 Python, 1245 Views
Program to Display the multiplication Table

Program to Display the multiplication Table | Python

 

num = int(input("Input your desired number "))

for i in range(1, 11):
   print(num, 'x', i, '=', num*i)