a=input("enter the number whose table you want to see") for i in range(0,11): print( %s,'x',i,'=' , %s *i,(a)) code example
Example: a=input("enter the number whose table you want to see") for i in range(0,11): print( %s,'x',i,'=' , %s *i,(a))
a=input("enter the number whose table you want to see")
for i in range(0,11):
print( %s,'x',i,'=' , %s *i,(a))