a = ['a','b','c']
b = ['w','y','z']
if a.sort() == b.sort():
print("True")
输出结果为“True”
想问一下对两个不相等列表使用sort.()排序之后为何会相等?
a = ['a','b','c']
b = ['w','y','z']
if a.sort() == b.sort():
print("True")
输出结果为“True”
想问一下对两个不相等列表使用sort.()排序之后为何会相等?
list.sort()原址排序方法,没有返回值。如果非要说有,那就是None
您的a.sort() = b.sort()操作,相当于None == None,您说会不会True?
您用新生成列表排序函数sorted()试试,看看还True不True?
代码
print('\n', sorted(a), sorted(b), sorted(a) == sorted(b), '\n')
代码运行效果截屏图片为证
python 代码
#!/sur/bin/nve python
# coding: utf-8
a = ['a','b','c']
b = ['w','y','z']
if a.sort() == b.sort():
print("True")
print(a.sort(), a.sort() is None)
print(b.sort(), b.sort() is None)