[Python-ideas] Python docs page: In what ways is None special
Jörn Heissler
python-ideas-2018 at tutnicht.de
Mon Jul 23 14:30:06 EDT 2018
On Mon, Jul 23, 2018 at 10:03:10 +0100, Jonathan Fine wrote:
> I thought, a page on how None is special would be nice.
> I've not found such a page on the web. We do have
> ===
> https://docs.python.org/3/library/constants.html
Hi,
there's also
https://docs.python.org/3/reference/datamodel.html#the-standard-type-hierarchy
None
This type has a single value. There is a single object with this
value. This object is accessed through the built-in name None. It is
used to signify the absence of a value in many situations, e.g., it
is returned from functions that don’t explicitly return anything.
Its truth value is false.
Cheers
Jörn Heissler
More information about the Python-ideas
mailing list