add item in python dictionary code example
Example 1: add item to python dictionary
data = dict()
data['key'] = value
Example 2: dictionary append value python
d = {1:2}
d.update({2: 4})
print(d) # {1: 2, 2: 4}
data = dict()
data['key'] = value
d = {1:2}
d.update({2: 4})
print(d) # {1: 2, 2: 4}