python如何比较两个list是否相同

avatar
作者
猴君
阅读量:0

Python2可以使用cmp()函数来比较两个list是否相等。

a=[1,-1,0] b=[1,-1,0] c=[-1,1,0] print cmp(a, b) print cmp(a, c)

结果输出

0 1

cmp(list1 ,list2) ,

当list1<list2会返回负数 -1、

当list1>list2会返回正数 1、

当list1=list2则返回0。

list1=list2一定是两个列表必须完全相同(包括位置),只有这样才能是0。

但是在Python3中我们可以使用operator方法来比较两个list是否相等。

import operator   a=[1,-1,0] b=[1,-1,0] c=[-1,1,0] print(operator.eq(a,b)) print(operator.eq(a,c))

实验结果:

D:\pycharmprogram\leetcode\venv\Scripts\python.exe D:/pycharmprogram/leetcode/3Sum/operator_test.py True False   Process finished with exit code 0

分析:

两个列表必须完全相同(包括位置),只有这样才能是True。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!