update value to dictionary python code example
Example 1: change dictionary value python
my_dict = {
'foo': 42,
'bar': 12.5
}
my_dict['foo'] = "Hello"
print(my_dict['foo'])
#This will give the output:
'Hello'
Example 2: python update dictionary
diction[element] = value
# if element not in diction, create new element