How To Print Multiple Tables

       #MULTIPLE TABLES



print('MULTIPLE TABLES')

r=int(input('Enter Number till which tables are needed :- '))
n=int(input('Enter Number till which products are needed :-'))

x=' '
for i in range(1,r+1):

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

    print (x)
    x=' '

Made By :- 
         Nilay Saraf

Comments

Popular Posts