What will be the output of the following Python code?
a={1,2,3}
b={1,2,3}
c=a.issubset(b)
print(c)
a={1,2,3}
b={1,2,3}
c=a.issubset(b)
print(c)A. True
B. Error, no method called issubset() exists
C. Syntax error for issubset() method
D. False
Answer: Option A

Join The Discussion