#printing multiplication table in python

n=eval(input(“Enter a number : “))
print(“\n”)
for i in range(1,11):
   print(i*n, end=” “)

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top