Guest User

Untitled

a guest
Mar 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. >>> s = {1, 2, 3, 4, 5}
  2. >>> s.difference_update({1, 2, 3})
  3. >>> s
  4. {4, 5}
  5. >>> s -= {4, 5}
  6. >>> s
  7. set()
Add Comment
Please, Sign In to add comment