手机
当前位置:查字典教程网 >脚本专栏 >python >举例讲解Python中的身份运算符的使用方法
举例讲解Python中的身份运算符的使用方法
摘要:Python身份运算符身份运算符用于比较两个对象的存储单元以下实例演示了Python所有身份运算符的操作:#!/usr/bin/python...

Python身份运算符

身份运算符用于比较两个对象的存储单元

举例讲解Python中的身份运算符的使用方法1

以下实例演示了Python所有身份运算符的操作:

#!/usr/bin/python a = 20 b = 20 if ( a is b ): print "Line 1 - a and b have same identity" else: print "Line 1 - a and b do not have same identity" if ( id(a) == id(b) ): print "Line 2 - a and b have same identity" else: print "Line 2 - a and b do not have same identity" b = 30 if ( a is b ): print "Line 3 - a and b have same identity" else: print "Line 3 - a and b do not have same identity" if ( a is not b ): print "Line 4 - a and b do not have same identity" else: print "Line 4 - a and b have same identity"

以上实例输出结果:

Line 1 - a and b have same identity Line 2 - a and b have same identity Line 3 - a and b do not have same identity Line 4 - a and b do not have same identity

【举例讲解Python中的身份运算符的使用方法】相关文章:

Python中使用动态变量名的方法

Python httplib,smtplib使用方法

Python中的魔法方法深入理解

Python列表推导式的使用方法

Python中针对函数处理的特殊方法

python三元运算符实现方法

Python中的CURL PycURL使用例子

Python中文件遍历的两种方法

2款Python内存检测工具介绍和使用方法

python中的yield使用方法

精品推荐
分类导航