39 Program to display multiplication tables from 1 t 10 in Python

Program:

#program to display multiplication tables from 1 t 10



for i in range(1,11):

   for j in range(1,11):

      k = i*j

      print (k, end=' ')

   print()


Output:

Program to display multiplication tables from 1 t 10 in Python

Previous
Next Post »