Skip to content

Instantly share code, notes, and snippets.

@chirag-v
Last active December 14, 2015 08:09

Revisions

  1. chirag-v renamed this gist Feb 28, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. chirag-v created this gist Feb 28, 2013.
    3 changes: 3 additions & 0 deletions even-numbers.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    def even(x):
    return x % 2 == 0
    list(__builtin__.filter(even, range(10)))