Skip to content

Instantly share code, notes, and snippets.

@kezabelle
Created February 9, 2016 09:18
Show Gist options
  • Save kezabelle/610e907b9f034fd16432 to your computer and use it in GitHub Desktop.
Save kezabelle/610e907b9f034fd16432 to your computer and use it in GitHub Desktop.
Oh python, why are you so silly.
>>> 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