Question: Using Python: Write a code with two nested loop to print the whole multiplication table. The program should print 100 lines which includes all elements
Using Python:
Write a code with two nested loop to print the whole multiplication table. The program should print 100 lines which includes all elements of the table. For example, the first few lines are as follows:
1 x 1 = 1
1 x 2 = 2
1 x 3 = 3
1 x 4 = 4
1 x 5 = 5
1 x 6 = 6
1 x 7 = 7
1 x 8 = 8
1 x 9 = 9
1 x 10 = 10
2 x 1 = 2
2 x 2 = 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
