手机
当前位置:查字典教程网 >脚本专栏 >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实例之wxpython中Frame使用方法

Python中的魔法方法深入理解

python解决字典中的值是列表问题的方法

python在linux中输出带颜色的文字的方法

Python操作列表的常用方法分享

Python 字符串操作方法大全

Python yield使用方法示例

如何运行Python程序的方法

Python 条件判断的缩写方法

python生成器的使用方法

精品推荐
分类导航