如何返回我的函数代码? 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>
答案 0 :(得分:1)
您可以使用
inspect.getsourcelines(执行)
获取代码。
In [1]: def testthis(): print "hello"
In [2]: import inspect
In [3]: inspect.getsourcelines(testthis)
Out[3]: ([u'def testthis(): print "hello"\n'], 1)