Created
June 24, 2014 23:00
-
-
Save maluta/8debf29e56f1694d1d7d 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
--- | |
# python 3 | |
>>> print(42) | |
42 | |
# python 2 | |
>>> print 42 | |
42 | |
--- | |
# python 3 | |
>>> sum([x for x in range(101)]) | |
5050 | |
# python 2 | |
>>> sum(range(101)) | |
5050 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment