Computer Science, asked by MANASVIchugh83, 7 months ago

write a program to print reverse counting from 10 to 1 using while loop in python

Answers

Answered by evakvictor
3

Answer:

Explanation:

# Python Program to Print Natural Numbers in Reverse Order

 

number = int(input("Please Enter any Number: "))

i = number

print("List of Natural Numbers from {0} to 1 in Reverse Order : ".format(number))  

while ( i >= 1):

   print (i, end = '  ')

Similar questions