Cordial greeting.
I have a list with str inside it in the following way:
l1=['hola estas','como Carol','esta tu ','aqui papa ']
and I want something like this to stay:
l2=['hola-como', 'estas-Carol','esta-aqui', 'tu-papa']
Each str of the list l1 has the same length and each word is separated for the same spaces.
Thank you for your attention.