Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created August 6, 2018 23:14
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/26982882b9a777a7b322054a7a835f94 to your computer and use it in GitHub Desktop.
Save Fhernd/26982882b9a777a7b322054a7a835f94 to your computer and use it in GitHub Desktop.
Funciones con argumentos variable. OrtizOL.
def calcular_promedio(valor, *otros):
return (valor + sum(otros)) / (1 + len(otros))
print(calcular_promedio(2, 3))
print(calcular_promedio(2, 3, 5, 7))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment