39 Program to display multiplication tables from 1 t 10 in Python Atharva Satyendra Agrawal March 26, 2020 Atharva Satyendra Agrawal 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: Tweet Share Share Share Related Post