内置常量¶
有少数的常量存在于内置命名空间中。 它们是:
-
False
¶ bool
类型的假值。 给False
赋值是非法的并会引发SyntaxError
。
-
True
¶ bool
类型的真值。 给True
赋值是非法的并会引发SyntaxError
。
-
None
¶ An object frequently used to represent the absence of a value, as when default arguments are not passed to a function. Assignments to
None
are illegal and raise aSyntaxError
.None
is the sole instance of theNoneType
type.
-
NotImplemented
¶ A special value which should be returned by the binary special methods (e.g.
__eq__()
,__lt__()
,__add__()
,__rsub__()
, etc.) to indicate that the operation is not implemented with respect to the other type; may be returned by the in-place binary special methods (e.g.__imul__()
,__iand__()
, etc.) for the same purpose. It should not be evaluated in a boolean context.NotImplemented
is the sole instance of thetypes.NotImplementedType
type.注解
当二进制(或就地)方法返回``NotImplemented``时,解释器将尝试对另一种类型(或其他一些回滚操作,取决于运算符)的反射操作。 如果所有尝试都返回``NotImplemented``,则解释器将引发适当的异常。 错误返回的``NotImplemented``将导致误导性错误消息或返回到Python代码中的``NotImplemented``值。
参见 实现算数运算 为例。
注解
NotImplementedError
和NotImplemented
不可互换,即使它们有相似的名称和用途。 有关何时使用它的详细信息,请参阅NotImplementedError
。在 3.9 版更改: 作为布尔值来解读
NotImplemented
已被弃用。 虽然它目前会被解读为真值,但将同时发出DeprecationWarning
。 它将在未来的 Python 版本中引发TypeError
。
-
Ellipsis
¶ The same as the ellipsis literal "
...
". Special value used mostly in conjunction with extended slicing syntax for user-defined container data types.Ellipsis
is the sole instance of thetypes.EllipsisType
type.
注解
变量名 None
,False
,True
和 __ debug__
无法重新赋值(赋值给它们,即使是属性名,将引发 SyntaxError
),所以它们可以被认为是“真正的”常数。
由 site
模块添加的常量¶
site
模块(在启动期间自动导入,除非给出 -S
命令行选项)将几个常量添加到内置命名空间。 它们对交互式解释器 shell 很有用,并且不应在程序中使用。
-
quit
(code=None)¶ -
exit
(code=None)¶ 当打印此对象时,会打印出一条消息,例如“Use quit() or Ctrl-D (i.e. EOF) to exit”,当调用此对象时,将使用指定的退出代码来引发
SystemExit
。
-
license
¶ 当打印此对象时,会打印出一条消息“Type license() to see the full license text”,当调用此对象时,将以分页形式显示完整的许可证文本(每次显示一屏)。