一、函数名

函数名本质上就是函数的内存地址

1.函数名可以被引用

def func():
    print('in func')

f = func
print(f)
View Code

相关文章: