Created
December 8, 2014 16:14
-
-
Save bryanyang0528/e478a2b4d5437afb5e9a to your computer and use it in GitHub Desktop.
boolean
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
print int(1 != 2), (1 != 2) | |
#1 True | |
print int(1 != 1), (1 != 1) | |
#0 False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment