Python-同一个类两个函数间变量的调用

class A():
    def test_a(self):
        self.m ="hello"

    def test_b(self):
        self.test_a()
        n=self.m + "world"
        print(n)
if __name__ == '__main__':
    A().test_b()

运行结果:
这里写图片描述

你可能感兴趣的:(python语言)