-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathex32.py
More file actions
26 lines (20 loc) · 738 Bytes
/
ex32.py
File metadata and controls
26 lines (20 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
the_count = [1, 2, 3, 4, 5]
fuits = ['apples', 'oranges', 'pears', 'apricots']
change = [1, 'pennies', 2, 'dimes', 3, 'quarters']
# this first kind of for-loop goes through a list
for number in the_count:
print(f"This is count {number}")
# also we can go throught mixed lists too
# notice we have to use {} since we dont know what's in it
for i in change:
print(f"I got {i}")
# we cna also build lists, first start with an empty one
elements = []
# then use the range function to do 0 to 5 counts
for i in range(0, 6):
print(f"Adding {i} to the list.")
# append is a function that lists understand
elements.append(i)
# now we can print them out too
for i in elements:
print(f"Elements was: {i}")