问一个python语法的问题:类里面的方法怎么使用变量

2024-11-29 18:22:09
推荐回答(1个)
回答(1):

classA():
self.b1 = 0
def b(self):
self.b1=123
def c(self):
c1=self.b1+5
print c1