Created
November 17, 2014 19:28
-
-
Save marcuswestin/d82673de1c5b73ed4eaa 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
a = (1,2) | |
foo = set() | |
a in foo | |
foo.add(a) | |
a in foo | |
(1,2) in foo | |
(2,1) in foo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment