📜  修改dict键名python代码示例

📅  最后修改于: 2022-03-11 14:45:06.292000             🧑  作者: Mango

代码示例2
>>> 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 "", line 1, in 
KeyError: 1