xxxxxxxxxx
d = {1: "one", 2: "three"}
d1 = {2: "two"}
# updates the value of key 2
d.update(d1)
#Output
{1: 'one', 2: 'two'}
xxxxxxxxxx
my_dict = {
'foo': 42,
'bar': 12.5
}
my_dict['foo'] = "Hello"
print(my_dict['foo'])
#This will give the output:
'Hello'
xxxxxxxxxx
d = {1: "one", 2: "three"}
d1 = {2: "two"}
# updates the value of key 2
d.update(d1)
d1 = {3: "three"}
# adds element with key 3
d.update(d1)
# {1: 'one', 2: 'two', 3: 'three'}
xxxxxxxxxx
python = {
"year released": 2001,
"creater":"Guido Van Rossum"
}
print(python)
python["year released"] = 1991
print(python)
xxxxxxxxxx
a_dict = {"a": 1, "B": 2, "C": 3}
new_key = "A"
old_key = "a"
a_dict[new_key] = a_dict.pop(old_key)
print(a_dict)
# OUTPUT
{'B': 2, 'C': 3, 'A': 1}
xxxxxxxxxx
for project in projects:
project['complete'] = project['id'] in (complete['id'] for complete in completes)
xxxxxxxxxx
d = {1: "one", 2: "three"}
d1 = {2: "two"}
# updates the value of key 2
d.update(d1)
print(d)
d1 = {3: "three"}
# adds element with key 3
d.update(d1)
print(d)