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))...