What is the output of the following code?
a=set('abc')
b=set('cdef')
print(a&b)
Qus
निम्नलिखित कोड का आउटपुट क्या होगा?
a=set('abc')
b=set('cdef')
print(a&b)
A. {'c'}
B. {'a','b','c','d','e','r'}
C. {c}
D. None of these