Q87
Is the following Python code valid? a=1,2,3 b=1,2,3,4 c=a.issuperset(b) print(c)
A.
False
AnswerB.
True
C.
Syntax error for issuperset() method
D.
Error, no method called issuperset() exists
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board