Home
About Us
Contact Us
Privacy Policy
Home
Programs
_C Programs
_C++ Programs
_Python Programs
Operations on Data
_Searching
Projects
_Python
About Us
Contact Us
Privacy Policy
Home
Python Program
Write a Program to Print Reverse Counting From 10 to 1 Using While Loop in Python
Write a Program to Print Reverse Counting From 10 to 1 Using While Loop in Python
Coding PLEX
January 06, 2022
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
i=10 while(i>=1): print(i) i = i-1
Copy
OUTPUT :
10
9
8
7
6
5
4
3
2
1
Post a Comment
0 Comments
Featured Post
QR Code Generator
QR Code Generator Application in Python Using Kivy Module - Beginner's Python Project For Students
Coding PLEX
January 21, 2022
Here is the Complete Code For the QR Code Generator Application in Python Using Kivy …
Popular Posts
Write a Program to Print Reverse Counting From 10 to 1 Using While Loop in Python
January 06, 2022
Among US with Python Using Turtle Module - Beginner's Python Project For Students
January 11, 2022
Iron Man with Python Using Turtle Module - Beginner's Python Project For Students
January 10, 2022
Social Plugin
Labels
C Program
18
Python Program
11
Projects
8
Python Turtle Arts
5
C++ Program
3
Games
1
0 Comments