Skip to content

Instantly share code, notes, and snippets.

@amarao
Created November 12, 2015 22:29
Show Gist options
  • Save amarao/7a4c68398045e9960dfc to your computer and use it in GitHub Desktop.
Save amarao/7a4c68398045e9960dfc to your computer and use it in GitHub Desktop.
#!/usr/bin/python
def myfunc(arg1, arg2):
return arg1 + arg2
print "result": myfunc(1, 2)
myfunc(3, 4) # no result, but calling anyway.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment