Ejemplo 1: Python dividió el rango por igual
def chunks(lst, n):
"""Yield successive n-sized chunks from lst."""
for i in range(0, len(lst), n):
yield lst[i:i + n]
list(chunks(range(10, 75), 10))
Ejemplo 2: lista dividida en listas de python de igual longitud
[lst[i:i + n] for i in range(0, len(lst), n)]
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)