全部博文(135)
分类: Python/Ruby
2011-08-11 16:40:50
2011年7月22日
14:47
方法1:
callable(fn) //返回True或False
方法2:
hasattr(fn, '__call__') //返回True或False
方法3:需要引入types模块
import types
isinstance(f, types.FunctionType)
Pasted from <http://www.cnblogs.com/rubylouvre/archive/2011/06/30/2095108.html>