Write a program in python to print 20 to 1 numbers using while loop.
Answers
Answered by
16
Answer:
n=20
while(n>0):
print(n)
n=n-1
Answered by
0
these is write answer...
Attachments:
Similar questions