“Lista de classificação Python” Respostas de código

Classificar lista de lista

>>> lis = [[1,4,7],[3,6,9],[2,59,8]]
>>> sorted(lis, key=lambda x: x[0])
[[1, 4, 7], [2, 59, 8], [3, 6, 9]]
Bloody Bug

Como classificar uma lista descendente de python

# defning A as a list
A.sort(reverse = True)
Last_Guardian

classificar python

>>> student_tuples = [
...     ('john', 'A', 15),
...     ('jane', 'B', 12),
...     ('dave', 'B', 10),
... ]
>>> sorted(student_tuples, key=lambda student: student[2])   # sort by age
[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]
Puzzled Pheasant

Como classificar em Python

a=[1,6,10,2,50,69,3]
print(sorted(a))
Thiêm KTH

Como classificar uma lista em Python

l=[1,3,2,5]
l= sorted(l)
print(l)
#output=[1, 2, 3, 5]
#or reverse the order:
l=[1,3,2,5]
l= sorted(l,reverse=True)
print(l)
#output=[5, 3, 2, 1]
SimTheGreat

Lista de classificação Python

>>> L = ['abc', 'ABD', 'aBe']
>>> sorted(L, key=str.lower, reverse=True) # Sorting built-in
['aBe', 'ABD', 'abc']
>>> L = ['abc', 'ABD', 'aBe']
>>> sorted([x.lower() for x in L], reverse=True)
['abe', 'abd', 'abc']
David Cao

Respostas semelhantes a “Lista de classificação Python”

Perguntas semelhantes a “Lista de classificação Python”

Mais respostas relacionadas para “Lista de classificação Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código