Skip to content

Instantly share code, notes, and snippets.

@utinajerolps
Created September 11, 2014 21:08
Show Gist options
  • Save utinajerolps/2fb7927891190a88d17a to your computer and use it in GitHub Desktop.
Save utinajerolps/2fb7927891190a88d17a to your computer and use it in GitHub Desktop.
def purify(numbers):
lst = []
for number in numbers:
if number % 2 == 0:
lst.append(number)
return lst
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment