阅读量:0
在Qt中调用Python代码可以通过PyQt或者PySide库来实现。以下是一个简单的示例代码:
- 安装PyQt或者PySide库:
pip install PyQt5
- 创建一个Python模块,比如
python_code.py
,包含要调用的Python代码:
def hello_world(): print("Hello, World!")
- 在Qt中调用Python代码:
from PyQt5.QtWidgets import QApplication from PyQt5.QtCore import QMetaObject, QCoreApplication from PyQt5.QtQml import QQmlApplicationEngine app = QApplication([]) # 加载Python代码模块 import python_code # 调用Python代码 python_code.hello_world() # 启动Qt应用程序 engine = QQmlApplicationEngine() engine.load("main.qml") # 退出应用程序 QMetaObject.invokeMethod(QCoreApplication.instance(), "quit", Qt.QueuedConnection) app.exec_()
在上面的代码中,我们首先导入PyQt的相关模块,然后加载Python代码模块并调用其中的函数。接着我们启动Qt应用程序,并在退出时调用Python代码。