Python dictionary append value code example
Example 1: add item to python dictionary
data = dict()
data['key'] = value
Example 2: Python dictionary append
d1 = {
"1" : 1,
"2" : 2,
"3" : 3
}
d1["4"] = 4
print(d1)
Example 3: add value to dictionary python
dict[key] = value
Example 4: python append value to dictionary list
import collections
a_dict = collections.defaultdict(list)
a_dict["a"].append("hello")
print(a_dict)
>>> defaultdict(<class 'list'>, {'a': ['hello']})
a_dict["a"].append("kite")
print(a_dict)
>>> defaultdict(<class 'list'>, {'a': ['hello', 'kite']})
Example 5: append to dictionary python
languages = {'#1': "Python", "#2": "Javascript", "#3": "HTML"}
languages.update({"#4": "C#"})
languages['#4'] = 'C#'
Example 6: how to append in dictionary in python
d = {'a': 1, 'b': 2}
print(d)
d['a'] = 100
d['c'] = 3
d['d'] = 4
print(d)