Let's say I have a list of lists.
>>> my_list = [[1, 2, 3], [4, 5, 6], [7, 8, [9, 0]]]
Is there a way to take all the items from that list and make it a single, un-nested list? Something like this:
>>> break_up(my_list)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 0]