python 2 map() reduce()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 2 map() reduce()相关的知识,希望对你有一定的参考价值。

利用map()函数,把用户输入的不规范的英文名字,变为首字母大写,其他小写的规范名字。输入:[‘adam‘, ‘LISA‘, ‘barT‘],输出:[‘Adam‘, ‘Lisa‘, ‘Bart‘]。

技术分享
1 def cg(name):
2     return name[0].upper()+name[1:].lower()
3 L = [adam, LISA, barT]
4 print map(cg,L1)
View Code

编写一个prod()函数,可以接受一个list并利用reduce()求积。

技术分享
1 def prod(num1,num2):
2     return num1*num2
3 L = [3,7,5,9]
4 print reduce(prod,L)
View Code

 

以上是关于python 2 map() reduce()的主要内容,如果未能解决你的问题,请参考以下文章

Python高级教程-Map/Reduce

python 2 map() reduce()

[py][lc]python高阶函数(匿名/map/reduce/sorted)

Python的map和reduce

Python 之内置函数:filter、map、reduce、zip、enumerate

Python高级函数--map/reduce