不是错字。我的意思是类型值。值谁的类型是“类型”。
我想写一个confition来问:
if type(f) is a function : do_something()
我是否需要创建一个临时函数并执行以下操作:
if type(f) == type(any_function_name_here) : do_something()
还是我可以使用的一组内置类型类型?像这样:
if type(f) == functionT : do_something()
对于您通常会检查的功能
>>> callable(lambda: 0)
True
尊重鸭子打字。但是有types
模块:
>>> import types
>>> dir(types)
['BooleanType', 'BufferType', 'BuiltinFunctionType', 'BuiltinMethodType', 'ClassType', 'CodeType', 'ComplexType', 'DictProxyType', 'DictType', 'DictionaryType', 'EllipsisType', 'FileType', 'FloatType', 'FrameType', 'FunctionType', 'GeneratorType', 'GetSetDescriptorType', 'InstanceType', 'IntType', 'LambdaType', 'ListType', 'LongType', 'MemberDescriptorType', 'MethodType', 'ModuleType', 'NoneType', 'NotImplementedType', 'ObjectType', 'SliceType', 'StringType', 'StringTypes', 'TracebackType', 'TupleType', 'TypeType', 'UnboundMethodType', 'UnicodeType', 'XRangeType', '__builtins__', '__doc__', '__file__', '__name__', '__package__']
但是你不应该检查type
相等性,而是使用isinstance
>>> isinstance(lambda: 0, types.LambdaType)
True
确定变量是否为函数的最佳方法是使用inspect.isfunction。一旦确定变量是函数,就可以使用.__name__
属性来确定函数的名称并执行必要的检查。
例如:
import inspect
def helloworld():
print "That famous phrase."
h = helloworld
print "IsFunction: %s" % inspect.isfunction(h)
print "h: %s" % h.__name__
print "helloworld: %s" % helloworld.__name__
结果:
IsFunction: True
h: helloworld
helloworld: helloworld
isfunction
是识别函数的首选方法,因为来自类的方法也是callable
:
import inspect
class HelloWorld(object):
def sayhello(self):
print "Hello."
x = HelloWorld()
print "IsFunction: %s" % inspect.isfunction(x.sayhello)
print "Is callable: %s" % callable(x.sayhello)
print "Type: %s" % type(x.sayhello)
结果:
IsFunction: False
Is callable: True
Type: <type 'instancemethod'>