如何在我的应用程序中包含 python IDE

问题描述 投票:0回答:1

我正在用 python 构建一个桌面应用程序,我想包含一个用户可以编写和运行 python 代码的部分。

python ide desktop-application
1个回答
0
投票

您可以使用 python 脚本使用这样的代码从 python 脚本中打开 pythonidle。

# importing the module
import os
  
# setting the path of the IDE
# use of \\ is important because 
# \ will be treated as a escape sequence
# here we are using the Python Idle 
# path to open the Python idle
path="C:\\Program Files (x86)\\Python\\python3.7.exe"
  
# using the os.startfile() method
os.startfile(path)

为了将空闲添加到您的应用程序中,您可以调整窗口大小并将其放置在您的应用程序中。

© www.soinside.com 2019 - 2024. All rights reserved.