Dada una lista de tuplas , ordene las tuplas por elemento máximo en una tupla.
Entrada : test_list = [(4, 5, 5, 7), (1, 3, 7, 4), (19, 4, 5, 3), (1, 2)]
Salida : [(19, 4, 5 ) , 3), (4, 5, 5, 7), (1, 3, 7, 4), (1, 2)]
Explicación : 19 > 7 = 7 > 2, es orden, por lo tanto, ordenación inversa por elemento máximo.Entrada : test_list = [(4, 5, 5, 7), (19, 4, 5, 3), (1, 2)]
Salida : [(19, 4, 5, 3), (4, 5, 5) , 7), (1, 2)]
Explicación : 19 > 7 > 2, es orden, por lo tanto, ordenación inversa por elemento máximo.
Método #1: Usar max() + sort()
En esto, realizamos la tarea de obtener el máximo elemento en la tupla usando max(), y la operación sort() se usa para realizar la clasificación.
Python3
# Python3 code to demonstrate working of # Sort Tuples by Maximum element # Using max() + sort() # helper function def get_max(sub): return max(sub) # initializing list test_list = [(4, 5, 5, 7), (1, 3, 7, 4), (19, 4, 5, 3), (1, 2)] # printing original list print("The original list is : " + str(test_list)) # sort() is used to get sorted result # reverse for sorting by max - first element's tuples test_list.sort(key = get_max, reverse = True) # printing result print("Sorted Tuples : " + str(test_list))
Producción:
La lista original es: [(4, 5, 5, 7), (1, 3, 7, 4), (19, 4, 5, 3), (1, 2)]
Tuplas ordenadas: [(19, 4 ) , 5, 3), (4, 5, 5, 7), (1, 3, 7, 4), (1, 2)]
Método #2: Usar sort() + lambda + reverse
En esto, usamos una funcionalidad similar, la única diferencia aquí es el uso de lambda fnc. en lugar de una función externa para la tarea de obtener una clasificación inversa.
Python3
# Python3 code to demonstrate working of # Sort Tuples by Maximum element # Using sort() + lambda + reverse # initializing list test_list = [(4, 5, 5, 7), (1, 3, 7, 4), (19, 4, 5, 3), (1, 2)] # printing original list print("The original list is : " + str(test_list)) # lambda function getting maximum elements # reverse for sorting by max - first element's tuples test_list.sort(key = lambda sub : max(sub), reverse = True) # printing result print("Sorted Tuples : " + str(test_list))
Producción:
La lista original es: [(4, 5, 5, 7), (1, 3, 7, 4), (19, 4, 5, 3), (1, 2)]
Tuplas ordenadas: [(19, 4 ) , 5, 3), (4, 5, 5, 7), (1, 3, 7, 4), (1, 2)]
Publicación traducida automáticamente
Artículo escrito por manjeet_04 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA