#引入模块 from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QDialog #创建Qt应用 app = QApplication([]) dlg = QDialog() dlg.show() app.exec()#让应用程序加入消息循环