What will the output of following code?
a={1,2,3}
b={1,2,3,4}
c=a.issuperset(b)
print(c)
Qus
निम्नलिखित Python कोड वैलिड है?
a={1,2,3} b={1,2,3,4} c=a.issuperset(b) print(c)
A. False
B. True
C. Syntax error for issuperset() method
D. Error, no method called issuperset() exists