Skip to content

Instantly share code, notes, and snippets.

@Pierian-Data
Created March 1, 2018 17:13
Show Gist options
  • Save Pierian-Data/57bbea951248f8d83097b5581493d3f6 to your computer and use it in GitHub Desktop.
Save Pierian-Data/57bbea951248f8d83097b5581493d3f6 to your computer and use it in GitHub Desktop.
def myfunc(a,b):
print(a+b)
# return a+b
@dannaemartinez
Copy link

def myfunc(a, b):
return a + b
myfunc(4,6)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment