Created
March 29, 2017 19:15
-
-
Save akshayxarora/1a48cf4da343e9ffe778b554242d170d to your computer and use it in GitHub Desktop.
list comprehension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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