Python判断两个list相等

Python2可以使用cmp()函数,但是在Python3中我们可以使用下面的方法来比较两个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。

你可能感兴趣的:(Python)