-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdictionary.py
69 lines (52 loc) · 1.16 KB
/
dictionary.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
# dictionary un ordered key value pair
# data type and data structure
dictionary = {
'a': [1, 2, 3],
'b': 'test',
'c': False
}
print(dictionary['b'])
print(dictionary['a'][1])
my_list = [{
'a': [1, 2, 3],
'b': 'test',
'c': False
}, {
123: [4, 5, 6],
True: 'test',
# [100]: False # key has to be immutable
'[100]': False
}
]
print(my_list[0]['a'][2])
print(my_list[1]['[100]'])
dict_one = {
'123': [1, 2, 3],
'123': 'hello' # key has to be unique otherwise overrided
}
print(dict_one['123'])
user = {
'basket': [1, 2, 3],
'123': 'hello'
}
# print(user['age']) throws error
print(user.get('age')) # returns None
print(user.get('age', 55)) # default value
print(user.get('basket'))
user2 = dict(name='test', sub='eng') # wrong dict('name'='test')
print(user2)
print('basket' in user)
print('basket' in user.keys())
print('basket' in user.values())
print('basket' in user.items())
print(user.items())
user3 = user2.copy()
user2.clear()
print(user2)
print(user3)
print(user3.pop('name'))
print(user3.popitem()) # randomly pop
print(user3)
print(user3.update({'age':65}))
print(user3.update({'ages': 65}))
print(user3)