我刚开始学习 Python,在搞砸并创建了一个我想使用的程序之后,我想为它创建一个 GUI。我不知道如何开始使用它,所以我只是查找它并找到EasyGUI
.
我有它的工作和一切,但我如何将答案记录到一个变量中?
import easygui as eg
n=0
eg.integerbox(msg="What is the max integer in the Sequence, n?"
, title="blah blah blah"
, default=0
, lowerbound=0)
我想将问题的答案设置What is the max integer in the Sequence, n?
为变量(在本例中为n
)。
喜欢n=output
什么,但没有“输出”语法。
关于如何做到这一点的任何想法?