Created
July 11, 2015 09:17
-
-
Save kobezorro/161cbcc0e297a74d3544 to your computer and use it in GitHub Desktop.
python
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
l = [x*x for x in range(10) if x % 3 == 0] | |
#l = [0, 9, 36, 81] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment