我有一个问题,我希望你能给我一个答案。
我正在尝试创建一个函数,该函数返回存储在 python 文件中的类中的函数数量。有没有好的方法?
我试过的:
>>> import types
>>> class Test(object):
def a(self):
pass
def b(self):
pass
>>> len([i for i in Test.__dict__.itervalues() if isinstance(i, types.FunctionType)])
2
您还可以使用inspect
模块:
class Test(object):
def a(self):
pass
def b(self):
pass
>>>>inspect.getmembers(Test, inspect.ismethod)
[('a', <unbound method Test.a>), ('b', <unbound method Test.b>)]
>>>>len(_)
2
这样的事情应该适用于你的第二个问题:
import foo
import inspect
for a,b in inspect.getmembers(foo, inspect.isclass):
print a
print len(inspect.getmembers(b, inspect.ismethod))