Skip to content

Instantly share code, notes, and snippets.

@MuddyBootsCode
Last active May 15, 2016 20:57
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 MuddyBootsCode/b074319be81d9daaee37f3bb87301762 to your computer and use it in GitHub Desktop.
Save MuddyBootsCode/b074319be81d9daaee37f3bb87301762 to your computer and use it in GitHub Desktop.
Even Number List Comprehension
a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
evenList = [n for n in a if n%2 == 0]
print (evenList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment