python 基础学习 2020-01-14 12:33:04 浏览数 (1) #此代码关于python函数调用的理解学习 #还不明白这段代码如何实现调用的!!! def apply_twice(func, arg): return func(func(arg))def add_five(x): return x 5print(apply_twice(add_five, 10)) python add apply func return 0 人点赞 上一篇:分享雷军22年前编写的代码