0

メソッド「z」を呼び出すにはどうすればよいですか? 彼はこれに最適な方法はどれですか? そしてオブジェクトに?

ファイル test1.py:

from test2 import Test2

class Test1(object):
    def __init__(self):
        pass
    def a(self):
        print("Running a of Test1")
        test_instance2 = Test2()
    def z(self):
        print("Running z of Test1")

if __name__ == '__main__':
    test_instance = Test1()
    test_instance.a()

ファイル test2.py:

class Test2:
    def __init__(self):
        self.b()
    def b(self):
        print('Running b of Test2')
        print('Here I want to call method z of Test1') # < How call z in Test1?

次のように実行します。

python test1.py

前もって感謝します!:)初歩的な質問で申し訳ありません:$

4

1 に答える 1