python如何判断两个列表是否相同

图片[1]-python如何判断两个列表是否相同-uusu优素-乐高,模型,3d打印,编程

判断两个列表是否相同,在Python2中可以使用cmp()函数,但是在Python3中我们可以使用下面的方法来比较两个list是否相等

importoperator

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.exeD:/pycharmprogram/leetcode/3Sum/operator_test.py
True
False

Processfinishedwithexitcode0

分析:

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容