Write a Program to Print Reverse Counting From 10 to 1 Using While Loop in Python

Here is the Complete Program to Print Reverse Counting From 10 to 1 Using While Loop in Python.


FLOW CHART :



PYTHON CODE :

i=10
while(i>=1):
    print(i)
    i = i-1 




OUTPUT : 

10
9
8
7
6
5
4
3
2
1

Post a Comment

0 Comments