Q. What is the output of the following code?
Code:print(type([]) is list)
β
Correct Answer: (A)
True
Explanation: The type of an empty list `[]` is indeed `list`.
print(type([]) is list)