码迷,mamicode.com
首页 > 编程语言 > 详细

python高阶函数式编程

时间:2016-09-21 12:51:03      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

from functools import reduce

def str2int(s):
    def fn(x, y):
        return x * 10 + y
    def char2num(s):
        return {‘0‘: 0, ‘1‘: 1, ‘2‘: 2, ‘3‘: 3, ‘4‘: 4, ‘5‘: 5, ‘6‘: 6, ‘7‘: 7, ‘8‘: 8, ‘9‘: 9}[s]
    return reduce(fn, map(char2num, s))

我觉得这个函数写得很好,感觉很新颖;所以,记录下来。

希望自己的编程能力可以有所提高,通过不断的学习。

20160921

python高阶函数式编程

标签:

原文地址:http://www.cnblogs.com/xiaohaillong/p/5892064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!