Q. What will be the output of the following code?
Code:print(type([1,2,3]))
β
Correct Answer: (A)
<class 'list'>
Explanation: Square brackets [] create a list in Python.