V setA = Set([‘John’, ‘Bob’, ‘Mary’, ‘Serena’]) V setB = Set([‘Jim’, ‘Mary’, ‘John’, ‘Bob’]) print(setA.symmetric_difference(setB)) print(setA - setB) print(setB - setA)