How To Print Table Of A Given Number

      #MULTIPLICATION TABLE



print('MULTIPLICATION TABLE')

n=int(input('Enter Number Of Which Table is Needed :- '))

d=int(input('Enter Number Till Which Product is Needed :- '))

x=' '

for i in range(1,d+1):
    x=x+str(i*n)
    print (n,'x',i,'=',x)
    x=' '

Made By:-
        Nilay Saraf

Comments

Popular Posts