map/ reduce/ filter
Posted lyzexx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map/ reduce/ filter相关的知识,希望对你有一定的参考价值。
原文:http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/00141861202544241651579c69d4399a9aa135afef28c44000
1.利用map()函数,将用户输入的不规范的英文名字, 变为首字母大写,其他小写的规范名字。
1 map(str.capitalize, [‘adam‘, ‘LISA‘, ‘barT‘])
2.Python提供的sum()函数可以接受一个list并求和,请编写一个prod()函数,可以接受一个list并利用reduce()求积
def prod(x, y): return x * y
>>> reduce(prod, [1,2,3,4])
3.把一个序列中的空字符串删掉
def not_empty(s): return s and s.strip() >>> filter(not_empty, [‘A‘, ‘‘, ‘B‘, None, ‘C‘,‘ ‘])
以上是关于map/ reduce/ filter的主要内容,如果未能解决你的问题,请参考以下文章