0

我有一个问题,我希望你能给我一个答案。

我正在尝试创建一个函数,该函数返回存储在 python 文件中的类中的函数数量。有没有好的方法?

4

2 回答 2

3

我试过的:

>>> 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
于 2012-10-21T04:38:10.183 回答
1

您还可以使用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))
于 2012-10-21T04:52:13.667 回答