What will be the output of the following Python code?
>>> s={5,6}
>>> s*3
>>> s={5,6}
>>> s*3A. Error as unsupported operand type for set data type
B. {5,6,5,6,5,6}
C. {5,6}
D. Error as multiplication creates duplicate elements which isn't allowed
Answer: Option A

Join The Discussion