Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. # Diferencia simétrica con
  2. {1, 2, 3, 4}.symmetric_difference({2, 3, 5}) # {1, 4, 5}
  3. {1, 2, 3, 4} ^ {2, 3, 5} # {1, 4, 5}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement