Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created August 10, 2018 23:58
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/6f3dc5f18884202005c8f89099a150f2 to your computer and use it in GitHub Desktop.
Save Fhernd/6f3dc5f18884202005c8f89099a150f2 to your computer and use it in GitHub Desktop.
Argumentos nombrados obligatorios en funciones. OrtizOL.
def metodo_prueba(mensaje, *, tamahnio):
print(mensaje)
print(tamahnio)
metodo_prueba('Python', 1024)
metodo_prueba('Python', tamahnio=1024)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment