“Entfernen Sie das erste Elementformular Dictionary Python” Code-Antworten

Erstes Element des Wörterbuchs Python löschen

#Heres on INEFFICIENT way to do it:

dictionary = {'first': 0, 'second': 1, 'thrid': 2}

#THIS METHOD IS FOR THE SITUATION WHERE YOU DONT KNOW WHAT THE FIRST KEY IS CALLED!!!

list = [[item, dictionary[item]] for item in dictionary]
list.pop(0)

new_dictionary = {}
for item in list:
    if item[0] not in new_dictionary:
        dictionary[item[0]] = item[1]
        
#Hope this works
Victorious Vulture

Entfernen Sie das erste Elementformular Dictionary Python

(k := next(iter(d)), d.pop(k))

which will return and remove the leftmost (first) item if it exists
Sudarshaana

Ähnliche Antworten wie “Entfernen Sie das erste Elementformular Dictionary Python”

Fragen ähnlich wie “Entfernen Sie das erste Elementformular Dictionary Python”

Weitere verwandte Antworten zu “Entfernen Sie das erste Elementformular Dictionary Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen