python - 如何检查变量是否是一个函数?

时间:2015-01-12 15:55:54

标签: python function

我有一个变量明确的" def"它是一个函数:

o = [<function result at 0x7f222138c7d0>]
type(o) = <type 'function'>

如何在我的代码中整数if

if type(o) == 'function':  # pseudocode
   print 'Found!'

由于

0 个答案:

没有答案