2020年11月30日

摘要: python 装饰器 一、函数、类的数据类型 二、装饰器 一、函数、类的数据类型 下面的例子,函数、类也是一种数据类型 from types import MethodType,FunctionType class A: def func(self): pass def fun_test(x): r 阅读全文
posted @ 2020-11-30 16:57 ananmy 阅读(139) 评论(0) 推荐(0) 编辑
 
摘要: python 高阶函数 1.匿名函数lambda --函数的实现比较简单的时候,用lambda 2.map() 映射 3.reduce() 累加 4.filter() 过滤 5.zip() 非高阶函数 recursion 递归 closure 闭包 正文: 首先要知道什么是高阶函数:一个函数作为参数 阅读全文
posted @ 2020-11-30 00:44 ananmy 阅读(175) 评论(0) 推荐(0) 编辑