Q. What will be the output of this code?
Code:
print(type( (1, 2, 3) ))
β
Correct Answer: (A)
<class 'tuple'>
Explanation: Parentheses with comma-separated values create a tuple.