Computer Science, asked by adhyagupta0, 2 months ago

Write a program to show table of 5 using WHILE LOOP.( python)
please tell the answer fast and correct ​

Answers

Answered by indiantechsmith
1

i=1

while(i<=10):

print(5,"X",i,"=",5*i)

i+=1

Similar questions