“Sortuj słownik według wartości, a następnie kluczowy Python” Kod odpowiedzi

Python sortuje słownik według wartości

x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0}

sort_by_key = dict(sorted(x.items(),key=lambda item:item[0]))
sort_by_value = dict(sorted(x.items(), key=lambda item: item[1]))

print("sort_by_key:", sort_by_key)
print("sort_by_value:", sort_by_value)

# sort_by_key: {0: 0, 1: 2, 2: 1, 3: 4, 4: 3}
# sort_by_value: {0: 0, 2: 1, 1: 2, 4: 3, 3: 4}
Clear Camel

SORT Lista słowników Python według wartości

newlist = sorted(list_to_be_sorted, key=lambda k: k['name']) 
Stupid Stork

Python - Sortuj słownik według wartości

d = {'one':1,'three':3,'five':5,'two':2,'four':4}

# Sort
a = sorted(d.items(), key=lambda x: x[1])

# Reverse sort
r = sorted(d.items(), key=lambda x: x[1], reverse=True)
Andrea Perlato

Jak sortować słownik w Pythonie według wartości

# your dictionary
a = {'a':4, 'c':5, 'b':3, 'd':0}

# sort x by keys
a_keys = dict(sorted(a.items(),key=lambda x:x[0],reverse = False)) # ascending order
# output: {'a': 4, 'b': 3, 'c': 5, 'd': 0}

# # sort x by values
a_values = dict(sorted(a.items(),key=lambda x:x[1],reverse = False)) # ascending order
# output: {'d': 0, 'b': 3, 'a': 4, 'c': 5}
Darkstar

Sortuj słownik według wartości, a następnie kluczowy Python

sorted(y.items(), key=lambda x: (x[1],x[0]))
Crowded Crossbill

Python Sort Sort of Słownik według wartości

my_list = sorted(my_list, key=lambda k: k['name'])
Grotesque Goshawk

Odpowiedzi podobne do “Sortuj słownik według wartości, a następnie kluczowy Python”

Pytania podobne do “Sortuj słownik według wartości, a następnie kluczowy Python”

Więcej pokrewnych odpowiedzi na “Sortuj słownik według wartości, a następnie kluczowy Python” w Python

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

Przeglądaj inne języki kodu