from PyQt5.QtCore import QObject class Parent_1: def __init__(self): print('Parent_1.__init__') class Parent_2(Parent_1): def __init__(self): super(Parent_2 ...
確定! 回上一頁