“Ändern Sie den DICT -Schlüsselnamen Python” Code-Antworten

Ändern Sie den DICT -Schlüsselnamen Python

a_dict[new_key] = a_dict.pop(old_key)
Evil Emu

Änderung Schlüssel des Wörterbuchs 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
Strange Salamander

Ähnliche Antworten wie “Ändern Sie den DICT -Schlüsselnamen Python”

Fragen ähnlich wie “Ändern Sie den DICT -Schlüsselnamen Python”

Weitere verwandte Antworten zu “Ändern Sie den DICT -Schlüsselnamen Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen