我正在学习python3,我想知道我怎么能
class testit:
def assigna():
a = "Hi"
def geta(self):
print(self.a)
test = testit
print(test.geta())
如何geta
按照我尝试使用的评论中的建议访问内部,self.a
它给了我一个错误。
这是我的更新代码
class testit:
def assigna(self):
self.a = "Hi"
def geta(self):
print(self.a)
test = testit
print(test.geta())
这是错误。
Traceback (most recent call last):
File "test.py", line 44, in <module>
print(test.geta())
TypeError: geta() missing 1 required positional argument: 'self'