“Python Sort 2d List” Código de respuesta

Ordenar por índice 2D Array Python

a = [[9, 9, 2], [9, 9, 3], [9, 9, 8], [9, 9, 4], [9, 9, 1], [9, 9, 5]]

b = sorted(a, key=lambda a:a[2])

#b contains the following arrays, sorted by their second index:
[[9, 9, 1], [9, 9, 2], [9, 9, 3], [9, 9, 4], [9, 9, 5], [9, 9, 8]]
QuietHumility

Python Sort 2d List

data = [['ABC', 12, 3, 100],
        ['DEF', 10, 5, 200],
        ['GHI', 13, 3, 1000]]

data.sort(key=lambda row: (row[2], row[3]), reverse=True)

print(data)

# [['DEF', 10, 5, 200], ['GHI', 13, 3, 1000], ['ABC', 12, 3, 100]]
Kodi4444

Respuestas similares a “Python Sort 2d List”

Preguntas similares a “Python Sort 2d List”

Más respuestas relacionadas con “Python Sort 2d List” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código