class_script.py 112 B

123456789
  1. class Obj1:
  2. def test(self):
  3. print("Obj1.test")
  4. class Test:
  5. a = Obj1()
  6. a.test()
  7. t = Test()