0 votes
in Python by
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

1 Answer

0 votes
by

a.intersection(b) - a.union(b)

Related questions

+1 vote
asked Jul 16, 2020 in Python by GeorgeBell
0 votes
asked Jul 10, 2020 in Python by GeorgeBell
...