应该返回啥?
def comp_ignore_case(s1,s2)
U1=S1.upper()
U2=S2.upper()
if u1>u2:
return 1 #这里返回的不应该是u1吗?U1都是大写了啊,为啥返回的还是S1
if u1<u2:
return -1
return 0
print sorted(['bob','about','Zoo','Credict'],comp_ignore_case)
def comp_ignore_case(s1,s2)
U1=S1.upper()
U2=S2.upper()
if u1>u2:
return 1 #这里返回的不应该是u1吗?U1都是大写了啊,为啥返回的还是S1
if u1<u2:
return -1
return 0
print sorted(['bob','about','Zoo','Credict'],comp_ignore_case)
2019-03-07
举报