共计 839 个字符,预计需要花费 3 分钟才能阅读完成。
要在 PyQt 中调用 Python 程序,可以使用以下步骤:
- 创建一个 PyQt 应用程序,包括一个按钮。
- 使用按钮的 clicked 信号连接一个槽函数。
- 在槽函数中调用 Python 程序。
下面是一个示例代码:
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
import subprocess
class MyApp(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.setWindowTitle(' 调用 Python 程序示例 ')
self.setGeometry(100, 100, 300, 200)
button = QPushButton(' 调用 Python 程序 ', self)
button.clicked.connect(self.callPythonProgram)
self.show()
def callPythonProgram(self):
subprocess.call(['python', 'path/to/your/python/program.py'])
if __name__ == '__main__':
app = QApplication(sys.argv)
myapp = MyApp()
sys.exit(app.exec_())
在上面的代码中,我们创建了一个按钮,当按钮被点击时会调用 callPythonProgram
方法。在这个方法中,我们使用 subprocess.call
函数来调用 Python 程序。你需要将 'path/to/your/python/program.py'
替换为你要调用的 Python 程序的路径。
运行这个示例程序,当你点击按钮时,就会调用你指定的 Python 程序。
丸趣 TV 网 – 提供最优质的资源集合!
正文完