python 可以把函数名赋值给变量,
>>> myfunc= dir>>> myfunc()['__builtins__', '__doc__', '__name__', '__package__', 'ine']
?可以理解为把函数名赋值给了变量
也可以理解为变量的内容可以是一个函数