“Python Zdobądź ostatni klucz w Dict” Kod odpowiedzi

Zdobądź ostatni element Pythona słownika

list(dict)[-1]
Gentle Goosander

Python Zdobądź ostatni klucz w Dict

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

Python zdobądź ostatni element Dict

my_dict.keys()[-1]
Clear Camel

Python zdobądź ostatniego słownika

# 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

Odpowiedzi podobne do “Python Zdobądź ostatni klucz w Dict”

Pytania podobne do “Python Zdobądź ostatni klucz w Dict”

Więcej pokrewnych odpowiedzi na “Python Zdobądź ostatni klucz w Dict” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu