手机
当前位置:查字典教程网 >脚本专栏 >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在linux中输出带颜色的文字的方法

Python中文件遍历的两种方法

python列表去重的二种方法

Python yield使用方法示例

python中的yield使用方法

python三元运算符实现方法

Python列表推导式的使用方法

Python中的CURL PycURL使用例子

python生成器的使用方法

精品推荐
分类导航