Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akshayxarora/1a48cf4da343e9ffe778b554242d170d to your computer and use it in GitHub Desktop.
Save akshayxarora/1a48cf4da343e9ffe778b554242d170d to your computer and use it in GitHub Desktop.
list comprehension
a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print [i for i in a if (i % 2 == 0)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment