Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created August 16, 2018 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/e846010bfb1715558935b0d4ed8f7284 to your computer and use it in GitHub Desktop.
Save Fhernd/e846010bfb1715558935b0d4ed8f7284 to your computer and use it in GitHub Desktop.
Generar múltiples valores desde una función. OrtizOL.
def generar_multiples_valores():
return (2, 3, 4, 5)
dos, tres, cuatro, cinco = generar_multiples_valores()
print(dos, tres, cuatro, cinco)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment