Is There Anything In Python That Is A `nonetype` Besides `none`?
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) S
Solution 1:
From the docs, None
is:
The sole value of the type
NoneType
.
Post a Comment for "Is There Anything In Python That Is A `nonetype` Besides `none`?"