import functools
def lower_cmp(a,b):
if a.lower()<b.lower():
return -1
else:
return 1
sorted_ignore_case = functools.partial(sorted,cmp = lower_cmp)
print sorted_ignore_case(['bob', 'about', 'Zoo', 'Credit'])
def lower_cmp(a,b):
if a.lower()<b.lower():
return -1
else:
return 1
sorted_ignore_case = functools.partial(sorted,cmp = lower_cmp)
print sorted_ignore_case(['bob', 'about', 'Zoo', 'Credit'])
2018-07-17
最赞回答 / jyh2012
在python 3.x里面 u代表unicode b代表byte也就是str普通字符加u只是为了把他的类型变成unicode类型的,就好比你把一个整数变成浮点型一个道理一般字符转换有三个符号u r b 其中r是代表非转义的原始字符串https://blog.csdn.net/u010496169/article/details/70045895可以参考这个看一看,希望对你有帮助
2018-07-17
最新回答 / qq_ozZ_8
print filter(lambda s:s and len(s.strip()) > 0, ['test', None, '', 'str', ' ', 'END'])
2018-07-16
最新回答 / 慕容6362865
L = [('Bob', 75), ('Adam', 92), ('Bart', 66), ('Lisa', 88)]#按名字排序sorted(L, key=lambda x: x[0])#按成绩降序sorted(L, key=lambda x: -x[1])#Python3代码
2018-07-16
import math
def is_sqr(x):
return math.sqrt(x)-int(math.sqrt(x)) == 0
print filter(is_sqr, range(1, 101))
def is_sqr(x):
return math.sqrt(x)-int(math.sqrt(x)) == 0
print filter(is_sqr, range(1, 101))
2018-07-16