Skip to content

Instantly share code, notes, and snippets.

@pigmonchu
Created November 29, 2021 16:42
Show Gist options
  • Save pigmonchu/0f028530b219a7899f97b9554984b867 to your computer and use it in GitHub Desktop.
Save pigmonchu/0f028530b219a7899f97b9554984b867 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment