-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathex38.py
29 lines (20 loc) · 866 Bytes
/
ex38.py
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
27
28
# List Manipulations
my_stuff = []
my_stuff.append('hello')
ten_things = "Apples Oranges Crows Telephone Light Sugar"
print("Wait there are not 10 things in that list. Let's fix that.")
stuff = ten_things.split(' ')
more_stuff = ["Day", "Night", "Song", "Frisbee", "Corn", "Banana", "Girl", "Boy"]
while len(stuff) != 10:
next_one = more_stuff.pop()
print("Adding: ", next_one)
stuff.append(next_one)
print("There are %d items now." % len(stuff))
print("There we go: ", stuff)
print("Manipulating stuff. Buenas Noches")
print(stuff[1]) # at position 1
print(stuff[-1]) # at position last
print(stuff.pop()) # popping the last one and delivering out
print(' '.join(stuff)) # joining with regex function with a parameter ' '
print('#'.join(stuff[3:5])) # ranging with position 3 and ending at y-1 with parameter regex '#'
# experimenting