-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-method.py
124 lines (106 loc) · 1.49 KB
/
list-method.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
#!/usr/bin/env python
#add
abc =['a','b','c']
abc.append('d')
abc.append('e')
print(abc)
print(type(abc))
print(type(abc[2]))
#count
abc.append('a')
print(abc.count('a'))
#extend
a =[1,2,3]
b =[4,5,6]
a.extend(b)
print(a *2)
#index
linux =['link','lina','linb','linc']
print(linux.index('lina'))
print(linux.index('linb'))
#insert
abc =[1,3,4,5,6]
abc[1]
print(abc)
abc.insert(1,2)
abc.insert(5,'6')
print(abc)
#pop
abc =[1,2,3,4]
abc.pop(0)
abc.pop()
print(abc)
abc =['hello','boy','hello','girl']
abc.remove('hello')
print(abc)
#reverse & sort
abc =[1,2,3,4,5]
abc.reverse()
print(abc)
abc.sort()
print(abc)
#slice
x =[10,20,30,40,50,60]
print(x[2:3])
print(x[2:3:1])
print(len(x))
print(max(x))
print(min(x))
# add
lists =[[] for i in range(3)]
lists[0].append(3)
lists[1].append(5)
lists[2].append(7)
print(lists)
#replace
x =[10,20,30,40,50,60]
x[1] =22
print(x)
#slice
x[2:4] = [12]
print(x)
x =[10,20,30,40,50,60]
del x[2:4]
print(x)
#replace2
x1=[10,20,30,40,50,60]
x1[2:3:6] =[11]
print(x1)
abc =[1,11,12,32]
abc.copy()
print(abc)
abc.clear()
print(abc)
print(list('abc'))
a =['a','b','c']
b =[1,2,3]
print([a,b])
"""
['a', 'b', 'c', 'd', 'e']
<class 'list'>
<class 'str'>
2
[1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6]
1
2
[1, 3, 4, 5, 6]
[1, 2, 3, 4, 5, '6', 6]
[2, 3]
['boy', 'hello', 'girl']
[5, 4, 3, 2, 1]
[1, 2, 3, 4, 5]
[30]
[30]
6
60
10
[[3], [5], [7]]
[10, 22, 30, 40, 50, 60]
[10, 22, 12, 50, 60]
[10, 20, 50, 60]
[10, 20, 11, 40, 50, 60]
[1, 11, 12, 32]
[]
['a', 'b', 'c']
[Finished in 0.1s]
"""