3
我剛開始學習Python,經過搞亂並創建了一個我想使用的程序,我想爲它創建一個GUI。我不知道如何開始,所以我只是查了一下,發現EasyGUI
。EasyGUI- Integerbox輸出
我有它的工作和一切,但我如何記錄答案到一個變量?
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
什麼的,但沒有'輸出'語法。
有關如何操作的任何想法?
這個工作;我可以使用這個問題的輸出。謝謝! –