Skip to content

Instantly share code, notes, and snippets.

@saghul
Created November 20, 2010 15:31
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 saghul/707898 to your computer and use it in GitHub Desktop.
Save saghul/707898 to your computer and use it in GitHub Desktop.
lambda example 1
In [1]: f = lambda x: x+1
In [2]: f(1)
Out[2]: 2
In [3]: f(3)
Out[3]: 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment