Flattening Nested Lists -- You're Doing It Wrong
On StackOverflow you can read numerous questions on "flattening" nested lists in Python.
They all have a similar form.
"How do I flatten this list [ [ 1, 2, 3 ], [ 4, 5, 6 ], ... , [ 98, 99, 100 ] ]?"
The answers include list comprehensions, itertools, and other clever variants.
[STRIKEOUT:All] Much of which is …
more ...