Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
按下按钮时,我需要从一个 wxpython 应用程序的代码中启动一个 python 终端。是否可以?
在 wxPython 领域,您可以加载一个包含 PyShell 的窗口,这是一个用 wxPython 编写的 Python shell。wxPython 演示有一个示例。还有 PyCrust(也在演示中),它为 PyShell 添加了更多功能。
否则,您可以通过使用 subprocess 模块打开一个包含 Python 的控制台来实现。