首页 > 编程语言 > 详细

Python基础03 id

时间:2017-09-22 11:05:04      阅读:247      评论:0      收藏:0      [点我收藏+]

id

id(x)对应变量x所引用对象的内存地址。可以把id(x)看成变量x的身份标识。

is

有时在编程中需要与变量的身份标识打交道,但不是通过 id 函数,而是 is 操作符。

The operators is and is not test for object identity: x is y is true if and only if x and are the same object.

可以简单把a is b 看成 id(a) == id(b)。

==

== 操作符也可用于相等性比较,只是比较的是内容的相等性,而不是身份标识的相等性。

 

Python基础03 id

原文:http://www.cnblogs.com/gattaca/p/7573661.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!