Quews:) Using while loop you have to print the table of 10

Solution:-
number = 10
count = 1
print ("The Multiplication Table of: ", number)
while count <= 10:
number = number * 1
print (number, ‘x’, count, ‘=’, number * count)
count += 1

1 Like

Correct . Keep practicing . Keep it up :+1: