当前位置:
首页 > Python基础教程 >
-
深入理解Python中的内置常量
这篇文章主要跟大家介绍了关于Python中内置常量的相关资料,文中介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面来一起看吧。
前言
大家都知道Python内置的常量不多,只有6个,分别是True、False、None、NotImplemented、Ellipsis、debug。下面就来看看详细的介绍:
一. True
- True是bool类型用来表示真值的常量。
>>> True
True
>>> type(True)
<class 'bool'>
- 对常量True进行任何赋值操作都会抛出语法错误。
>>> True = 1
SyntaxError: can't assign to keyword
二. False
- False是bool类型用来表示假值的常量。
>>> False
False
>>> type(False)
<class 'bool'>
- 对常量False进行任何赋值操作都会抛出语法错误。
>>> False = 0
SyntaxError: can't assign to keyword
三. None
- None表示无,它是NoneType的唯一值。
>>> None #表示无,没有内容输出
>>> type(None)
<class 'NoneType'>
- 对常量None进行任何赋值操作都会抛出语法错误。
>>> None = 2
SyntaxError: can't assign to keyword
- 对于函数,如果没有return语句,即相当于返回None。
>>> def sayHello(): #定义函数
print('Hello')
>>> sayHello()
Hello
>>> result = sayHello()
Hello
>>> result
>>> type(result)
<class 'NoneType'>
四. NotImplemented
- NotImplemented是NotImplementedType类型的常量。
>>> NotImplemented
NotImplemented
>>> type(NotImplemented)
<class 'NotImplementedType'>
- 使用bool()函数进行测试可以发现,NotImplemented是一个真值。
>>> bool(NotImplemented)
True
- NotImplemented不是一个绝对意义上的常量,因为他可以被赋值却不会抛出语法错误,我们也不应该去对其赋值,否则会影响程序的执行结果。
>>> bool(NotImplemented)
True
>>> NotImplemented = False
>>>
>>> bool(NotImplemented)
False
- NotImplemented多用于一些二元特殊方法(比如__eq__、__lt__等)中做为返回值,表明没有实现方法,而Python在结果返回NotImplemented时会聪明的交换二个参数进行另外的尝试。
>>> class A(object):
def __init__(self,name,value):
self.name = name
self.value = value
def __eq__(self,other):
print('self:',self.name,self.value)
print('other:',other.name,other.value)
return self.value == other.value #判断2个对象的value值是否相等
>>> a1 = A('Tom',1)
>>> a2 = A('Jay',1)
>>> a1 == a2
self: Tom 1
other: Jay 1
True
>>> class A(object):
def __init__(self,name,value):
self.name = name
self.value = value
def __eq__(self,other):
print('self:',self.name,self.value)
print('other:',other.name,other.value)
return NotImplemented
>>> a1 = A('Tom',1)
>>> a2 = A('Jay',1)
>>> a1 == a2
self: Tom 1
other: Jay 1
self: Jay 1
other: Tom 1
False
当执行a1==a2(即调用__eq__(a1,a2)),返回NotImplemented时,Python会自动交换参数再次调用__eq__(a2,a1)。
五. Ellipsis
- Ellipsis是ellipsis类型的常量,它和…是等价的。
>>> Ellipsis
Ellipsis
>>> type(Ellipsis)
<class 'ellipsis'>
>>> ...
Ellipsis
>>> ... == Ellipsis
True
- 使用bool()函数进行测试可以发现,Ellipsis是一个真值。
>>> bool(Ellipsis)
True
- Ellipsis不是一个绝对意义上的常量,因为他可以被赋值却不会抛出语法错误,我们也不应该去对其赋值,否则会影响程序的执行结果。
>>> bool(Ellipsis)
True
>>> Ellipsis = False
>>> bool(Ellipsis)
False
- Ellipsis多用于表示循环的数据结构。
>>> a = [1,2,3,4]
>>> a.append(a)
>>> a
[1, 2, 3, 4, [...]]
>>> a
[1, 2, 3, 4, [...]]
>>> len(a)
>>> a[4]
[1, 2, 3, 4, [...]]
>>>
六. debug
- __debug__是一个bool类型的常量。
>>> __debug__
True
>>> type(__debug__)
<class 'bool'>
- 对常量__debug__进行任何赋值操作都会抛出语法错误。
>>> __debug__ = False
SyntaxError: assignment to keyword
- 如果Python没有使用-O选项启动,此常量是真值,否则是假值。
总结
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
原文链接:http://www.cnblogs.com/sesshoumaru/p/python-constants.html
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
开启SQLSERVER数据库缓存依赖优化网站性能
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比