这是一个创建于 2699 天前的主题,其中的信息可能已经有所发展或是发生改变。
# -*- coding: utf-8 -*-
import inspect
import os
class Test(object):
"""Test Class """
def test(self):
self.fuc = lambda x:x
class Testone(Test):
pass
print( inspect.getsourcelines(Test)) #代码块,每行一个元素,组成数组
上面代码输出如下,请问数组中的 6 是表示什么?
(['class Test(object):\n', '\t"""Test Class """\n', '\tdef test(self):\n', '\t\tself.fuc = lambda x:x\n'], 6)
|
|
1
Septembers 2017-07-04 04:32:07 +08:00 via iPad
看文档啊
|