Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created June 15, 2020 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/d37e0dfbf38575cac1980de4bfc4f4ef to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/d37e0dfbf38575cac1980de4bfc4f4ef to your computer and use it in GitHub Desktop.
s1={1,2,3,4,5}
s2={4,5,6,7,8}
# symmetric_difference by using ^ operator
s3=s1^s2
print (s3) #Output: {1, 2, 3, 6, 7, 8}
s4=s1.symmetric_difference(s2)
print (s4) #Output:{1, 2, 3, 6, 7, 8}
#symmetric_difference_update()
print (s1.symmetric_difference_update(s2)) #Output: None
print (s1) #Output: {1, 2, 3, 6, 7, 8}
s2^=s1
print (s2) #Output: {1,2,3}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment