Q21
What will be the output of the following Python code? >>> s=5,6 >>> s*3
A.
Error as unsupported operand type for set data type
AnswerB.
{5,6,5,6,5,6}
C.
{5,6}
D.
Error as multiplication creates duplicate elements which isn't allowed
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board