“.flatten () Python” Código de respuesta

Flatten List Python

def flatten(L):
    for item in L:
        try:
            yield from flatten(item)
        except TypeError:
            yield item

list(flatten([[[1, 2, 3], [4, 5]], 6]))
>>>[1, 2, 3, 4, 5, 6]
Grieving Grivet

.flatten () Python

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
>>> a.flatten('F')
array([1, 3, 2, 4])
Awful Albatross

Respuestas similares a “.flatten () Python”

Preguntas similares a “.flatten () Python”

Más respuestas relacionadas con “.flatten () Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código