Let's say I have a list:
lista = ['dog', 'cat', 'red blue']
And I want to split the 'red blue' to 'red', 'blue':
lista = ['dog', 'cat', 'red', 'blue']
How could I go about doing that? I've tried:
for x in lista:
lista.split()
But this doesn't seem to change anything