python中的is和==

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的is和==相关的知识,希望对你有一定的参考价值。

Python中,is和==都可以比较两个对象,但是它们的不同点在于:

 
   1. is通过id()函数判断两个对象是否相等,==判断它们的值

>>> a = 126; b = 126
>>> a is b  //  a和b同时赋给126,id相等
True
>>> a = 257; b = 257
>>> a is b //  a和b同时赋给257,id相等
True
>>> a = 257
>>> b = 257
>>> a is b //  id(257)不是固定的,所以不等
False 
>>> a == b // 值依然相等
True

   2. ==可以通过对象的__eq__方法来修改

class int_number:
    def __init__(self, num):
        if type(num) == int:
            self.value = num
        else:
            print("error")
    def __eq__(self, num):
        if self.value == num:
            return True
        else:
            return False

这样我们就自造了一个int类型,下面来试验一下

>>> a = int_number(124.5)
error
>>> a = int_number(124)
>>> a == 124
True
>>> a == 126
False
>>> a is 124
False

可以看出,虽然我们修改a的__eq__方法让它“等于”124,但用is比较还是不等的。

以上是关于python中的is和==的主要内容,如果未能解决你的问题,请参考以下文章

python使用上下文对代码片段进行计时,非装饰器

python常用代码

add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段

add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段

Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段

Kotlin学习之旅解决错误:kotlin.NotImplementedError: An operation is not implemented: Not yet implemented(代码片段