Skip to content

Commit bfd2c4f

Browse files
# 11. Iterables
1 parent dd44b63 commit bfd2c4f

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

.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,14 @@
1+
# 11. Iterables
2+
3+
# Iterable
4+
for x in range(5):
5+
print(x+1)
6+
7+
# Iterable
8+
for let in ("Python"):
9+
print(let)
10+
11+
shopping_cart= "shopping cart "
12+
for item in shopping_cart:
13+
print(item)
14+

0 commit comments

Comments
 (0)