def cmp_ignore_case(s1, s2):
if s1[0].upper()>s2[0].upper:
return 1
if s1[0].upper()<s2[0].upper:
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
添加回答
举报
0/150
提交
取消