Skip to content

Instantly share code, notes, and snippets.

@pigmonchu
Created November 29, 2021 16:42
Show Gist options
  • Save pigmonchu/a8b87670b9c0d8b02db9b6a60cc7f38b to your computer and use it in GitHub Desktop.
Save pigmonchu/a8b87670b9c0d8b02db9b6a60cc7f38b to your computer and use it in GitHub Desktop.
def applyToEachString(stringFunction, *words):
myList = []
for word in words:
# ¿Qué instrucción debe ir aquí?
return tuple(myList)
def onlyVowels(word):
vowels = 'aeiouáéíóúü'
resp = ""
for letter in word:
if letter in vowels or letter in vowels:
resp = resp + letter
return resp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment