我刚开始学习 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 之类的,但没有“输出”语法。

关于如何这样做的任何想法?

最佳答案

不是easygui的专家,但我会试一试。

您是否尝试过类似的事情:

import easygui as eg
uservalue = eg.integerbox(msg="What is the max integer in the sequence, n?"
                  , title = "blah blah blah"
                  , default = 0
                  , lowerbound = 0

easygui 文档给出了一个类似的选择框示例:
msg ="What is your favorite flavor?"
title = "Ice Cream Survey"
choices = ["Vanilla", "Chocolate", "Strawberry", "Rocky Road"]
choice = choicebox(msg, title, choices)

关于python - EasyGUI- Integerbox 输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12791307/

10-12 22:09