Beginner
Python
Q35 / 101
What is the output of: print(type(None))?
Correct! Well done.
Incorrect.
The correct answer is C) <class 'NoneType'>
C
Correct Answer
<class 'NoneType'>
Explanation
None is the sole instance of NoneType in Python, representing the absence of a value.
Progress
35/101