为了账号安全,请及时绑定邮箱和手机立即绑定

为什呢用lower就通不过呢

def cmp_ignore_case(s1, s2):

    u1=s1.lower()

    u2=s2.lower()

    if u1<u2:

        return 1

    if u1>u2:

        return -1

    return 0

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)


正在回答

1 回答

return 1和-1写反了。

按照下面写就对了

def cmp_ignore_case(s1, s2):

    u1=s1.lower()

    u2=s2.lower()

    if u1<u2:

        return -1

    if u1>u2:

        return 1

    return 0

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)


2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

为什呢用lower就通不过呢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信