How to convert this:
[[[1,2,3], ['a','b','c']], [[4,5], ['d','e']], [[6,7,8,9], ['f','g','h','i']]]
to this:
[[1,2,3,4,5,6,7,8,9], ['a','b','c','d','e','f','g','h','i']]
Knowing python, there must be some way using zip and list comprehensions.