Created
October 14, 2017 15:04
-
-
Save xsaamiir/82533bc32ed6c61aadcb3d4935ae6879 to your computer and use it in GitHub Desktop.
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, 4, 9, 16, 25, 36, 49, 64, 81, 100] | |
even_elements = [i for i in a if i%2 == 0] | |
print(even_elements) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment