Python program to print the multiplication table of a given number
kw.py
print("________________________________________")print("Program to print the multiplication table")print("________________________________________")try:n=int(input("Enter the number "))if(n<=0):print("Please enter a positive number")else:foriinrange(1,11):print(n,"*",i,"=",n*i)exceptValueError:print("Enter valid number")print("________________________________________")
Dear User, Thank you for visitng KodingWindow. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.