Skip to content

Instantly share code, notes, and snippets.

@sadbox
Created July 14, 2013 16:01
Show Gist options
  • Select an option

  • Save sadbox/5994724 to your computer and use it in GitHub Desktop.

Select an option

Save sadbox/5994724 to your computer and use it in GitHub Desktop.
lambda example
filter(lambda x: x < 5, range(10))
vs.
def foo(x):
return x < 5
bar = range(10)
filter(foo, bar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment