从方法访问实例变量

时间:2016-05-06 00:19:00

标签: python oop python-3.x

我无法从同一类中的方法访问实例变量。

class GetImagesFromSinglePage(object):
     def __init__(self,source):
        self.source = source
        self.imgLinks = []
     def retrieveImg(source):
        #.....tasks
        self.imgLinks = tempimgLinks #there it show can't access that          variable
     def getLink(self):
        return self.imgLinks

我该怎么办? 问候, 约翰

0 个答案:

没有答案