Dessign the function vocales_andarinas(w) which, given a str w in lowercase, rewrites it rotating by one the vowels.
That is,
where there is an a put e
where there is an e put i
...
where there is an u put a
About statements
The official statement of a problem is always the one
in the PDF document. The HTML version of the statement
is also given to help you, but may contain some content
that is not well displayed. In case of doubt, always use the PDF.
Sample session
>>> vocales_andarinas("patata")'petete'>>> vocales_andarinas("aeiou")'eioua'>>> vocales_andarinas("mi mama me mima")'mo meme mi mome'