Python Program to Display the multiplication Table
Topic: Python Program to Display the multiplication Table
Solution
num = 12 for i in range(1, 11): print(num, 'x', i, '=', num*i)
List all Python Programs
Solution
num = 12 for i in range(1, 11): print(num, 'x', i, '=', num*i)