A veces, mientras trabajamos con datos, podemos tener un problema en el que recibimos una serie de listas con datos en formato de string, que deseamos encontrar el máximo de cada número entero de la lista de strings. Analicemos ciertas formas en que se puede realizar esta tarea.
Método #1: Usando loop + int()
Este es el método de fuerza bruta para realizar esta tarea. En esto, ejecutamos un ciclo para toda la lista, convertimos cada string en un número entero y realizamos la maximización de la lista y la almacenamos en una lista separada.
Python3
# Python3 code to demonstrate working of # Maximum of String Integer # using loop + int() # initialize list test_list = [['1', '4'], ['5', '6'], ['7', '10']] # printing original list print("The original list : " + str(test_list)) # Maximum of String Integer # using loop + int() res = [] for sub in test_list: par_max = 0 for ele in sub: par_max = max(par_max, int(ele)) res.append(par_max) # printing result print("List after maximization of nested string lists : " + str(res))
The original list : [['1', '4'], ['5', '6'], ['7', '10']] List after maximization of nested string lists : [4, 6, 10]
Método #2: Usar max() + int() + comprensión de lista
Esta es la forma abreviada con la ayuda de la cual se puede realizar esta tarea. En esto, ejecutamos un bucle en las listas usando la comprensión de listas y extraemos la maximización usando max().
Python3
# Python3 code to demonstrate working of # Maximum of String Integer # using max() + int() + list comprehension # initialize list test_list = [['1', '4'], ['5', '6'], ['7', '10']] # printing original list print("The original list : " + str(test_list)) # Maximum of String Integer # using max() + int() + list comprehension res = [max(int(ele) for ele in sub) for sub in test_list] # printing result print("List after maximization of nested string lists : " + str(res))
The original list : [['1', '4'], ['5', '6'], ['7', '10']] List after maximization of nested string lists : [4, 6, 10]
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