Last active
November 30, 2017 06:16
-
-
Save azdafirmansyah/c025f233dfd6079926fbe572222f429c to your computer and use it in GitHub Desktop.
List Comprehension
This file contains hidden or 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
#Exercise URL : http://www.practicepython.org/exercise/2014/03/19/07-list-comprehensions.html | |
''' | |
Let’s say I give you a list saved in a variable: a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]. | |
Write one line of Python that takes this list a and makes a new list that has only the even elements of this list in it. | |
''' | |
list_data = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] | |
list_even = [x for x in list_data if x%2 == 0] | |
list_odd = [x for x in list_data if x%2 != 0] | |
print(list_even) | |
print(list_odd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment