How can I convert List of Lists of Lists into one List? For example I would like to make one list which contains all elements from all nested lists, i.e if I have:
l = [[["A", ["B"]], ["C", "D"]], [["E", "F"], ["A"]]]
then the results should be:
["A", "B", "C", "D", "E", "F", "A"]