在3.7中如何运行案例?
def cmp_ignore_case(s1, s2): if s1.upper() > s2.upper(): return 1 else: return -1 return 0 print (sorted(['bob', 'about', 'Zoo', 'Credit'],cmp_ignore_case))
我的代码有什么错误
def cmp_ignore_case(s1, s2): if s1.upper() > s2.upper(): return 1 else: return -1 return 0 print (sorted(['bob', 'about', 'Zoo', 'Credit'],cmp_ignore_case))
我的代码有什么错误
2018-07-23
举报