-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixedlist.py
41 lines (38 loc) · 920 Bytes
/
mixedlist.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
29
30
31
32
33
34
35
36
37
38
39
40
41
#combine two lists
numers=[1,10,9,6,2]
words=['a','a','a','a','a']
numers.extend(words)
print(numers)
#concatenate cities
alllist=numers+words
for w in alllist:
print(w)
#reverse list
words.reverse()
print(words[-1])
#sort and sorted method
quiz_scores = [20, 19, 20, 15, 20, 20, 20, 18, 18, 18, 19]
quiz_scores.sort()
print(quiz_scores)
game_points = [3, 14, 0, 8, 21, 1, 3, 8]
sorted_points = sorted(game_points)
print(sorted_points)
#split methood
line="I am waiting for a long time."
linenew=line.split()
print(linenew)
for i in linenew:
print(i)
#split method for splitting characters:
linenew=line.split('a')
print(linenew)
linenew=line.split('\n')
for i in linenew:
print(i)
#join method to join a new string with the list
name=['S','H','E','E','Z','A']
nospace=""
print(nospace.join(name))
name=['S','H','E','E','Z','A']
star="**\n"
print(star.join(name))