python 判定变量是函数
方法1:
callable(fn) //返回True或False
方法2:
hasattr(fn, '__call__') //返回True或False
方法3:需要引入types模块
import types isinstance(f, types.FunctionType)
机器瞎学/数据掩埋/模式混淆/人工智障/深度遗忘/神经掉线/计算机幻觉/专注单身二十五年
每天学习一点点算法
方法1:
callable(fn) //返回True或False
方法2:
hasattr(fn, '__call__') //返回True或False
方法3:需要引入types模块
import types isinstance(f, types.FunctionType)