I was just wondering if in Python there's any other object/instance whose type is NoneType
type besides the very well known None
:
>>> type(None)
<type 'NoneType'>
So... This is very clear, but I was wondering whether there's anything else that is also of NoneType
>>> type(???)
<type 'NoneType'>
Needless to say, this is just for curiosity sake and learning purposes :-)
Thank you in advance.