标签:-- def 函数的参数 UNC size 替换 pre 函数名 print
def func():
print("吃了么")
def func2(fn):
print("我是func2")
fn() # 执?传递过来的fn # 即 fn替换成func, 即执行fn()
print("我是func2")
func2(func)
"函中函" -------------------- func2(func) -------------- 函数名可以当做函数的参数
标签:-- def 函数的参数 UNC size 替换 pre 函数名 print
原文地址:https://www.cnblogs.com/jack20181017/p/9893035.html