同样未改变s1、s2的内容,为什么这个代码不对呢?
def cmp_ignore_case(s1, s2):
u1 = s1
u2 = s2
u1.upper()
u2.upper()
if u1 < u2:
return -1
if u1 > u2:
return 1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)