Created
November 12, 2016 14:03
-
-
Save chendi0x7C00/af4b9b2188d2972ff4d46a7d1868e813 to your computer and use it in GitHub Desktop.
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
| # coding=UTF-8 | |
| i = 1 | |
| ++i # <==> +(+i), no ++ operator in Python | |
| assert i == 2 # AssertionError |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment