gpt4 book ai didi

python - EasyGUI- 整数框输出

转载 作者:行者123 更新时间:2023-11-28 17:49:33 25 4
gpt4 key购买 nike

我刚开始学习 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)

我想将问题的答案设置为变量,序列中的最大整数 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- 整数框输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12791307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com