from PyQt5.QtCore import QObject # Create a QObject object obj = QObject() # Get the parent class mros = QObject.mro() for mro in mros: print(mro) # The ...
確定! 回上一頁