I have following list of lists, as a result after tokenizing:
[['Who', 'are', 'you', '?'],
['I', 'do', 'not', 'know', 'who', 'you', 'are'],
['What', 'is', 'your', 'name', '?']]
Now I would like to have a list containing the "simple" elements, e.g.:
['Who','are','you','?','I','do','not','know','who'...]
I have already tried everything I could possibly think of, using (nested) for loops, (nested) while loops... I either get the list ['Who','Who','Who',...]
(and so on) or I get "list index out of range"
.
Can somebody please help me out? Thank you!