Skip to content

Commit 4783991

Browse files
# 12. While Loops
1 parent 35d5c39 commit 4783991

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.idea/workspace.xml

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Complete Python Mastery[MH]/03- Control Flow/12. While Loops.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@
99
while command.lower() != "quit":
1010
command = input(">")
1111
print("ECHO", command)
12+
#
13+
y = 12
14+
while y>0:
15+
y -=1
16+
print(y)
17+
18+
# happy coding

0 commit comments

Comments
 (0)