Published
- 1 min read
flatten list of lists python
The solution for this is noted below
flatten list of lists python
Solution
flat_list = [item for sublist in t for item in sublist]
Try other methods by searching on the site. That is if this doesn’t work