摘要: 返回函数高阶函数除了可以接受函数作为参数外,还可以把函数作为结果值返回。一个求和函数def a_sum(*args): ax = 0 for n in args: ... 阅读全文
posted @ 2018-09-07 01:02 a_py 阅读(224) 评论(0) 推荐(0)