forked from kib-courses/python_developer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
55 lines (40 loc) · 684 Bytes
/
test.py
File metadata and controls
55 lines (40 loc) · 684 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
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
from main import Arr
array = Arr("u", "1", "2", "1", "4", "1")
def reverse():
b = reversed(array)
c = [_ for _ in b]
print(b)
print(c)
def iterate():
d = [_ for _ in array]
print(d)
def length():
print(len(array))
def get_it(i):
print(array[3])
c = [_ for _ in array[1:3]]
print(c)
def index_test(i):
print(array.index(i))
def count_test(i):
print(array.count(i))
reverse()
iterate()
length()
get_it(3)
index_test("4")
count_test("1")
array["4"] = "3"
iterate()
del array[3]
iterate()
array.append("5")
iterate()
array.pop(3)
iterate()
array.extend(array)
iterate()
array.insert(3, "a")
iterate()
array.clear()
iterate()