1

可能重复:
如何获取 Python 函数的源代码?

如何返回我的函数的代码?func_name 方法按预期工作,但 func_code 没有

>>> def testthis(): print 'test successful'
>>> testthis()
test successful

>>> testthis.func_name
'testthis'
>>> testthis.func_code
<code object testthis at 0124D728, file "<pyshell#281>", line 1>
4

1 回答 1

1

您可以使用

检查.getsourcelines(function_name)

为了得到他的代码。

In [1]: def testthis(): print "hello"

In [2]: import inspect

In [3]: inspect.getsourcelines(testthis)
Out[3]: ([u'def testthis(): print "hello"\n'], 1)
于 2012-08-10T13:08:42.637 回答