Skip to content

Instantly share code, notes, and snippets.

@codeboy101
Created January 5, 2016 12:27
Show Gist options
  • Save codeboy101/8a1f9d60b766b5c57649 to your computer and use it in GitHub Desktop.
Save codeboy101/8a1f9d60b766b5c57649 to your computer and use it in GitHub Desktop.
>>> sum = lambda x,y : x + y
>>> add = lambda x,y : x+ y
>>> add(24,16)
40
>>> add
<function <lambda> at 0x038FD780>
>>> 0x038FD780
59758464
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment