# 利用map()函数,把用户输入的不规范的英文名字,变为首字母大写,其他小写的规范名字。输入:['adam', 'LISA', 'barT'],输出:['Adam', 'Lisa', 'Bart']:
def normalize(name):
return name[0:1].upper()+name[1:].lower();
L1 = ['adam','LISA','barT']
L2 = list(map(normalize,L1))
print(L2)
# Python提供的sum()函数可以接受一个list并求和,请编写一个prod()函数,可以接受一个list并利用reduce()求积:
from functools import reduce
def prod(L):
def cal(x,y):
return x*y
return reduce(cal,L)
print('3*5*7*9=',prod([3,5,7,9]))
# 利用map和reduce编写一个str2float函数,把字符串'123.456'转换成浮点数123.456:
import math
def str2float(s):
def tonumber(s):
return {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9,'-1':-1}[s.replace('.','-1')]
def positive(x,y):
if(y == -1):
return x
else:
return 10*x+y
return reduce(positive,map(tonumber,s))/math.pow(10,(len(s)-s.index('.')-1))
print('str2float(\'12123.321\')=',str2float('12123.321'))
python 学习--map 和 reduce的使用
最新推荐文章于 2023-05-17 21:22:29 发布