-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlists.py
225 lines (167 loc) · 4.7 KB
/
lists.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# List is a collection which is ordered and changeable. Allows duplicate members.
# methods
# append() Adds an element at the end of the list
# clear() Removes all the elements from the list
# copy() Returns a copy of the list
# count() Returns the number of elements with the specified value
# extend() Add the elements of a list (or any iterable), to the end of the current list
# index() Returns the index of the first element with the specified value
# insert() Adds an element at the specified position
# pop() Removes the element at the specified position
# remove() Removes the item with the specified value
# reverse() Reverses the order of the list
# sort() Sorts the list
thisList = ["apple", "banana", "cherry"]
print(thisList)
# create new list
thisList = list(("apple", "banana", "cherry")) # note the double round-brackets
print(thisList)
print(thisList[1])
# get last item
thisList = ["apple", "banana", "cherry"]
print(thisList[-1])
# range
thisList = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]
print(thisList[2:5])
# negative range
thisList = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]
print(thisList[-4:-1])
# exclude
thisList = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]
print(thisList[:4])
# start from
thisList = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]
print(thisList[2:])
# check if exists
thisList = ["apple", "banana", "cherry"]
if "apple" in thisList:
print("Yes, 'apple' is in the fruits list")
# change value
thisList = ["apple", "banana", "cherry"]
thisList[1] = "blackcurrant"
print(thisList)
# change range
thisList = ["apple", "banana", "cherry", "orange", "kiwi", "mango"]
thisList[1:3] = ["blackcurrant", "watermelon"]
print(thisList)
# insert item
thisList = ["apple", "banana", "cherry"]
thisList.insert(2, "watermelon")
print(thisList)
# append to end
thisList = ["apple", "banana", "cherry"]
thisList.append("orange")
print(thisList)
# extend a list with another list
thisList = ["apple", "banana", "cherry"]
tropical = ["mango", "pineapple", "papaya"]
thisList.extend(tropical)
print(thisList)
# add any iterable object
thisList = ["apple", "banana", "cherry"]
thisTuple = ("kiwi", "orange")
thisList.extend(thisTuple)
print(thisList)
# remove item
thisList = ["apple", "banana", "cherry"]
thisList.remove("banana")
print(thisList)
# delete item
thisList = ["apple", "banana", "cherry"]
del thisList[0]
print(thisList)
# delete list
thisList = ["apple", "banana", "cherry"]
del thisList
# clear a list
thisList = ["apple", "banana", "cherry"]
thisList.clear()
print(thisList)
# remove via index
thisList = ["apple", "banana", "cherry"]
thisList.pop(1)
print(thisList)
# remove last item
thisList = ["apple", "banana", "cherry"]
thisList.pop()
print(thisList)
# loop
thisList = ["apple", "banana", "cherry"]
for x in thisList:
print(x)
# loop index numbers
thisList = ["apple", "banana", "cherry"]
for i in range(len(thisList)):
print(thisList[i])
# loop using while
thisList = ["apple", "banana", "cherry"]
i = 0
while i < len(thisList):
print(thisList[i])
i = i + 1
# loop using comprehension
thisList = ["apple", "banana", "cherry"]
[print(x) for x in thisList]\
# without list comprehension
fruits = ["apple", "banana", "cherry", "kiwi", "mango"]
newList = []
for x in fruits:
if "a" in x:
newList.append(x)
print(newList)
# with list comprehension
fruits = ["apple", "banana", "cherry", "kiwi", "mango"]
# newList = [expression for item in iterable if condition == True]
newList = [x for x in fruits if "a" in x] # get all values with a in it
print(newList)
# sort
thisList = ["orange", "mango", "kiwi", "pineapple", "banana"]
thisList.sort()
print(thisList)
thisList = [100, 50, 65, 82, 23]
thisList.sort()
print(thisList)
# reverse sort
thisList = ["orange", "mango", "kiwi", "pineapple", "banana"]
thisList.sort(reverse=True)
print(thisList)
# custom sort
def myfunc(n):
return abs(n - 50)
thisList = [100, 50, 65, 82, 23]
thisList.sort(key=myfunc)
print(thisList)
# case-insensitive sort
thisList = ["banana", "Orange", "Kiwi", "cherry"]
thisList.sort(key=str.lower)
print(thisList)
# reverse
thisList = ["banana", "Orange", "Kiwi", "cherry"]
thisList.reverse()
print(thisList)
# copy
thislist = ["apple", "banana", "cherry"]
mylist = thislist.copy()
print(mylist)
thislist = ["apple", "banana", "cherry"]
mylist = list(thislist)
print(mylist)
# join lists
list1 = ["a", "b", "c"]
list2 = [1, 2, 3]
list3 = list1 + list2
print(list3)
# or
list1 = ["a", "b", "c"]
list2 = [1, 2, 3]
for x in list2:
list1.append(x)
print(list1)
# or
list1 = ["a", "b", "c"]
list2 = [1, 2, 3]
list1.extend(list2)
print(list1)
# multiply
list1 = ["a", "b", "c"]
print(list1 * 2)