This is the code that I have:
[[[3], [4]], [[5], [6]], [[7], [8]]]
How can I change it into:
[[3], [4], [5], [6], [7], [8]]
You want to flatten a single level of the input list, try this solution using a list comprehension:
lst = [[[3], [4]], [[5], [6]], [[7], [8]]] [e for sl in lst for e in sl] => [[3], [4], [5], [6], [7], [8]]