Q. What will this code print?
Code:print(type(None))
β
Correct Answer: (A)
<class 'NoneType'>
Explanation: `None` is of type `NoneType`.
print(type(None))