Python program to print table of entered number

 n=int(input("Enter N : "))

for i in range(1,11):

    print(n," x ",i," = ",n*i)

Comments