I have a list like this:
lst = [['one two', 'three'], ['four five', 'six']]
I need to make:
lst = [['one', 'two', 'three'], ['four', 'five', 'six']]
Tried
([i[0].split() for i in lst])
but it gives only
[['one', 'two'], ['four', 'five']]
Any ideas how to manage it?
Thanks in advance!