python高阶函数式编程

Posted

tags:

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

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高阶函数式编程的主要内容,如果未能解决你的问题,请参考以下文章

python函数式编程以及高阶函数

Python函数式编程以及高阶函数

python进阶-- 01 函数式编程

python--函数式编程 (高阶函数(map , reduce ,filter,sorted),匿名函数(lambda))

python中的函数式编程与装饰器

Python进阶学习——函数式编程