python如何比较两个list是否相同
【摘要】Python2可以使用cmp()函数来比较两个list是否相等。a=[1,-1,0] b=[1,-1,0] c=[-1,1,0] printcmp(a,b) printcmp(a,c)结果输出0 1相关推荐:
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
相关推荐:《Python基础教程》
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:pycharmprogramleetcodevenvScriptspython.exe D:/pycharmprogram/leetcode/3Sum/operator_test.py
True
False
Process finished with exit code 0
分析:
两个列表必须完全相同(包括位置),只有这样才能是True。
上一篇:python入门基础教程
下一篇:python xml解析中文乱码怎么办
就业培训申请领取
环球青藤
官方QQ群扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群
最新文章
Python编程各地入口
环球青藤官方微信服务平台
刷题看课 APP下载
免费直播 一键购课
代报名等人工服务
Python编程热点排行