Program to print Table of N in Python
#Table of N n=int(input('Enter N to print its table:')) for i in range(1,11): print('{} x {} = {}'.format(n,i,n*i))
#Table of N n=int(input('Enter N to print its table:')) for i in range(1,11): print('{} x {} = {}'.format(n,i,n*i))
Download the File. Click here to Watch the Explanation & Developing Video