目录: 1.函数对象 2.函数嵌套 3.名称空间 4.作用域 函数是第一类对象 1.函数名是可以被引用: def index(): print('from index') a = index a() 2.函数名可以当做参数传递 def foo(x,y,func): print(x,y) func() def bar(): print('from bar') foo(1,2,bar) 结果: 1 2 from bar 3.函数名可以当做返回值使用 传参的时候没有特殊需求,一定不要加括号,加括号当场…