Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 8, 2019 14:53
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 parzibyte/48f77a2d72e160856bd3fdd91df12fc8 to your computer and use it in GitHub Desktop.
Save parzibyte/48f77a2d72e160856bd3fdd91df12fc8 to your computer and use it in GitHub Desktop.
"""
Vamos a probar estas funciones, puedes importarlas
como tú quieras. En este caso son simples para
no confundir al lector
@author parzibyte
"""
def suma(a, b):
return a + b
def resta(a, b):
return a - b
def multiplicacion(a, b):
return a * b
def division(a, b):
return a / b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment