To print the table of 10 using while loop

n=10
i=1
while i<11:
print(n,"“,i,”=",ni)
i=i+1

3 Likes

Good going @kinnukeshiya , Keep practicing :fire:

1 Like