Skip to main content
Python program to print multiplication table
Write a Python program to print multiplication table ..
============================
n=int(input("Enter the number to print the tables for:"))
for i in range(1,11):
      print(n,"x",i,"=",n*i)
 
 
 
 
 
 
 
  
 
 
 
 
Comments
Post a Comment