निम्नलिखित कोड का परिणाम क्या है ?
What is the output of the following code ?
a = set('dcma')
b = set('mlpc')
print(a^b)
A
{'d', 'c', 'm', 'a', 'm', 'l', 'p', 'c'}
B
{'m', 'l', 'p', 'c'}
C
{'d', 'c', 'm', 'a'}
D
None
Explanation
Correct Answer: D) None