“Python sortowana funkcja malejąca” Kod odpowiedzi

Jak sortować listę w kolejności malejącej w Pythonie

#1 Changes list
list.sort(reverse=True)
#2 Returns sorted list
sorted(list, reverse=True)
MitroGr

Python sortuj schodzenie

sorted(timestamps, reverse=True)
Testy Turtle

Python sortowana funkcja malejąca

>>> sorted(student_tuples, key=itemgetter(2), reverse=True)
[('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]

>>> sorted(student_objects, key=attrgetter('age'), reverse=True)
[('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]
68Duck

Odpowiedzi podobne do “Python sortowana funkcja malejąca”

Pytania podobne do “Python sortowana funkcja malejąca”

Więcej pokrewnych odpowiedzi na “Python sortowana funkcja malejąca” w Python

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

Przeglądaj inne języki kodu