Vidyalelo
Python · Q9

Python Sets MCQs: Exam

Programming · Python · question 9

Q9

What is the output of the following code:my_set = 1, 2, 3print(my_set)

A.
{1, 2, 3}
Answer
B.
1, 2, 3
C.
[1, 2, 3]
D.
Error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board