I am trying to combine list and strings to list such as
[['hello', 'stack', 'over'], 'flow', 'i', 'have', [], 'question']
to
['hello', 'stack', 'over', 'flow', 'i', 'have', 'question']
How to do this?
I am trying to combine list and strings to list such as
[['hello', 'stack', 'over'], 'flow', 'i', 'have', [], 'question']
to
['hello', 'stack', 'over', 'flow', 'i', 'have', 'question']
How to do this?