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

2024年11月29日 18:22
有1个网友回答
网友(1):

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