I have a list like:
['Mark', 'Reynold', 'Peter', 'Randall Macenroe'] #The list is a lot longer, so I can't go by index
And I want to change that list into another list:
['Mark', 'Reynold', 'Peter', 'Randall', 'Macenroe']
How can I do that? I sure can use that space between the two names (there will be always a space between two names), but how?