python change dictionary key code example
Example 1: python change a key in a dictionary
dictionary[new_key] = dictionary[old_key]
del dictionary[old_key]
dictionary[new_key] = dictionary.pop(old_key)
Example 2: change dictionary value python
my_dict = {
'foo': 42,
'bar': 12.5
}
my_dict['foo'] = "Hello"
print(my_dict['foo'])
'Hello'
Example 3: modify dict key name python
a_dict[new_key] = a_dict.pop(old_key)
Example 4: python change dictionary key
dictionary[new_key] = dictionary[old_key]
del dictionary[old_key]
Example 5: change key of dictionary python
>>> dictionary = { 1: 'one', 2:'two', 3:'three' }
>>> dictionary['ONE'] = dictionary.pop(1)
>>> dictionary
{2: 'two', 3: 'three', 'ONE': 'one'}
>>> dictionary['ONE'] = dictionary.pop(1)
Traceback (most recent call last):
File "<input>", line 1, in <module>
KeyError: 1
Example 6: how to modify the dict in python
d = {1: "one", 2: "three"}
d1 = {2: "two"}
d.update(d1)
print(d)
d1 = {3: "three"}
d.update(d1)
print(d)