码迷,mamicode.com
首页 > 其他好文 > 详细

运算符

时间:2017-12-20 03:55:43      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:运算符   post   ==   class   als   运算   font   blog   span   

#身份运算(is ,is not)
is比较的是id,而双等号比较的是值
毫无疑问,id若相同则值肯定相同,而值相同id则不一定相同
>>> x=1234567890
>>> y=1234567890
>>> x == y
True
>>> id(x),id(y)
(3581040, 31550448)
>>> x is y
False

运算符

标签:运算符   post   ==   class   als   运算   font   blog   span   

原文地址:http://www.cnblogs.com/python654/p/8067763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!