What is the output of the following code?
a = set('dcma')
b = set('mlpc')
print(a^b)
Qus
निम्नलिखित कोड का आउटपुट क्या है?
a = set('dcma') b = set('mlpc') print(a^b)
A. {‘d’, ‘c’, ‘m’, ‘l’, ‘p’, ‘c’}
B. {‘m’, ‘l’, ‘p’, ‘c’}
C. {‘d’, ‘c’, ‘m’, ‘a’}
D. None of These