Skip to content

Commit 35d5c39

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

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

Diff for: .idea/workspace.xml

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 12. While Loops
2+
x = 0
3+
while x <= 12 :
4+
x=x+1
5+
print(x)
6+
7+
# >>>>>>
8+
command = ""
9+
while command.lower() != "quit":
10+
command = input(">")
11+
print("ECHO", command)

0 commit comments

Comments
 (0)