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

Diff for: .idea/workspace.xml

+1-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+7
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)