python内置常量
程序员文章站
2023-11-02 18:40:58
- False bool 类型的假值。 给 False 赋值是非法的并会引发 SyntaxError。 - True bool 类型的真值。 给 True 赋值是非法的并会引发 SyntaxError。 - None NoneType 类型的唯一值。 我理解为空值。 - NotImplemented ......
- false
bool 类型的假值。 给 false 赋值是非法的并会引发 syntaxerror。
- true
bool 类型的真值。 给 true 赋值是非法的并会引发 syntaxerror。
- none
nonetype 类型的唯一值。
我理解为空值。
- notimplemented
未实现的方法,用于实现抽象方法。
- ellipsis
与省略号文字字面 “...” 相同。
- __debug__
如果 python 没有以 -o 选项启动,则此常量为真值。