Computer Science, asked by CEOEkanshNimbalkar, 10 months ago

Write a program in python to print 20 to 1 numbers using while loop. ​

Answers

Answered by harshitrana60169
16

Answer:

n=20

while(n>0):

print(n)

n=n-1

Answered by adhyanshukla78
0

these is write answer...

Attachments:
Similar questions