sorted排序无输出结果(python34)
def cmp_ignore_case(s1, s2):
s3=s1.upper()
s4 =s2.upper()
if s3 < s4:
return -1
if s3 > s4:
return 1
return 0
lis2 = list(sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case))
print(lis2)