オブジェクトが関数かどうかの判定方法は2通り。
・isinstance() で判定する場合は、types の FunctionType で判定
import types f = lambda x:x+1 print( isinstance(f, types.FunctionType) ) # True
・callable() で判定、(呼び出せるかという文字通りの問い合わせ)
f = lambda x:x+1 print( callable(f) ) # True
オブジェクトが関数かどうかの判定方法は2通り。
・isinstance() で判定する場合は、types の FunctionType で判定
import types f = lambda x:x+1 print( isinstance(f, types.FunctionType) ) # True
・callable() で判定、(呼び出せるかという文字通りの問い合わせ)
f = lambda x:x+1 print( callable(f) ) # True