Created
February 9, 2016 09:18
-
-
Save kezabelle/610e907b9f034fd16432 to your computer and use it in GitHub Desktop.
Oh python, why are you so silly.
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
>>> set([1]) - set([1]) | |
set([]) | |
>>> set([1]) + set([1]) | |
TypeError: unsupported operand type(s) for +: 'set' and 'set' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment