Answers for "how to change value of key in dictionary python"

4

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
Posted by: Guest on June-10-2020
0

how to change key to value and versa in python dictionary

dict = {value:key for key, value in dict.items()}
Posted by: Guest on August-07-2020

Code answers related to "how to change value of key in dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language