# 引入模块 from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QDialog # 创建Qt应用 app = QApplication([]) # 参数:命令行参数 dlg = QDialog() dlg.show() app.exec() #