“Python bekommt das letzte Element im DICT” Code-Antworten

Holen Sie sich das letzte Element des Wörterbuchs Python

list(dict)[-1]
Gentle Goosander

Python bekommt den letzten Schlüssel im DICT

lastkey = list(yourDict.keys())[-1] 
Powerful Penguin

Python bekommt das letzte Element im DICT

my_dict.keys()[-1]
Clear Camel

Python bekommt das letzte im Wörterbuch

# import the right class
from collections import OrderedDict

# create and fill the dictionary
d = OrderedDict()
d['first']  = 1
d['second'] = 2
d['third']  = 3

# retrieve key/value pairs
els = list(d.items()) # explicitly convert to a list, in case it's Python 3.x

# get first inserted element 
els[0]
=> ('first', 1)

# get last inserted element 
els[-1]
=> ('third', 3)
Clever Crane

Ähnliche Antworten wie “Python bekommt das letzte Element im DICT”

Fragen ähnlich wie “Python bekommt das letzte Element im DICT”

Weitere verwandte Antworten zu “Python bekommt das letzte Element im DICT” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen