Loading, please wait...

A to Z Full Forms and Acronyms

Program to Display the multiplication Table | Python

Mar 17, 2021 Python, 1244 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)
A to Z Full Forms and Acronyms

Related Article