Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

flatten a list of list python

# idiomatic python

# using itertools
import itertools

list_of_list = [[1, 2, 3], [4, 5], [6]]
chain = itertools.chain(*images)

flattened_list = list(chain)
# [1, 2, 3, 4, 5, 6]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #flatten #list #list #python
ADD COMMENT
Topic
Name
8+5 =