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.
好吧,我想做的是,我正在构建一个小型编译器,仅用于使用 python 进行算术评估!应该接受任何长度的字符串,而且,我需要弹出一个控制台,用户可以在其中输入他的查询!任何人都可以帮助我弹出控制台吗?
os.system("python")
将打开一个新的python窗口...
raw_input("Enter Equation:")
只会从用户那里得到一个方程
不确定其中任何一个是否是您正在寻找的...
import wx a = wx.App() user_string = wx.GetTextFromUser("Enter Equation:")
会弹出用户输入提示(只要您安装了 wx)