Huge newbie to python and this is probably really easy, but I can't get my head around it at all.
I have a text file with a number of rows following this format
nothing doing nothing[0] doing[0]
hello world hello[0] world[2]
There are only spaces between the strings, no markers.
I'd like to extract these strings into excel file in the following format - so that each 'set' of strings are in a separate column.
| 1 | 2 | 3
------------------------------------------------------
1 | nothing doing | nothing[0] | doing[0]
------------------------------------------------------
2 | hello world | hello[0] | world[2]
I've been looking at answers on here but they don't quite full fill this question.

nothing doing\tnothing[0]\tdoing[0]? How do you differenciate between the first col with a space and the other two cols?