DevJourney
Home
/
Python
/
Basics
/
While
/
while.py
Python/Basics/While/while.py
a=
4
while
(a>
0
) : a=a-
1
print
(
"Reduced from "
, a+
1
,
" to "
, a)
View on GitHub