随笔分类 -  Python

摘要:self代表类的实例,而非类。 实例来说明 Python 1 2 3 4 5 6 7 class Test: def prt(self): print(self) print(self.__class__) t = Test() t.prt() Python Python 1 2 3 4 5 6 7 阅读全文
posted @ 2018-03-07 22:36 ken007 阅读(242) 评论(0) 推荐(0)