Login
Remember
Register
Ask a Question
a.symmetric_difference(b) highlights the ________.
0
votes
asked
May 15, 2019
in
Python
by
Derya
a.symmetric_difference(b) highlights the ________.
1)a.union(b) - b.intersection(b)
2)a.union(b) - a.intersection(b)
3)a.intersection(b) - a.union(b)
4)a - b
#python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 27, 2019
by
anonymous
a.intersection(b) - a.union(b)
...