判断两个列表是否相同,在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
暂无评论内容