2012-10-09 49 views
3

我剛開始學習Python,經過搞亂並創建了一個我想使用的程序,我想爲它創建一個GUI。我不知道如何開始,所以我只是查了一下,發現EasyGUIEasyGUI- 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什麼的,但沒有'輸出'語法。

有關如何操作的任何想法?

回答

2

不是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文檔提供了一個類似的例子爲choicebox:

msg ="What is your favorite flavor?" 
title = "Ice Cream Survey" 
choices = ["Vanilla", "Chocolate", "Strawberry", "Rocky Road"] 
choice = choicebox(msg, title, choices) 
+0

這個工作;我可以使用這個問題的輸出。謝謝! –