1

我是编程新手,刚刚被分配使用 Tkinter 在 Python 中创建掷骰子的任务。我完全被这个错误信息难住了:

Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Python27\lib\lib-tk\Tkinter.py", line 1470, in __call__
    return self.func(*args)
  File "C:/Users/d/Desktop/Dice Simulator/Simulator.py", line 12, in roll
    if y == 1:
UnboundLocalError: local variable 'y' referenced before assignment

谁能阐明我的错误?这是我的整个代码:

y = 1
print "Please wait for the GUI to load"
from Tkinter import *
DICE = dict(
    sixsided={'name': 'Six Sided Dice',
              'side': 6},
    eightsided = {'name': 'Eight Sided Dice',
                  'side': 8}
    )
names = ['Six Sided Dice', 'Eight Sided Dice']
import random


def back_():
    diceroll.destroy()

def roll():
    if y == 1:
        blankanswer.pack_forget()
        droll.set("You rolled a " + str(random.randrange(1,endnum,1)))
        filledanswer.pack()
        y = 2
    if y == 2:
        droll.set("You rolled a " + str(random.randrange(1,endnum,1)))

def cont_():
    y = 1
    if dice.get() == "Six Sided Dice":
        selecteddice = "sixsided"
    if dice.get() == "Eight Sided Dice":
        selecteddice = "eightsided"

    diceroll = Tk()
    diceroll.title("Dice Simulator")

    endnum = int(DICE[selecteddice]["side"])

    droll = StringVar()
    droll.set("You rolled a " + str(random.randrange(1,endnum,1)))

    reroll = Button(diceroll, text="Click to roll the " + dice.get() + ".",command=roll)
    reroll.pack()

    blankanswer = Label(diceroll, text="You rolled a  ")
    blankanswer.pack()


    filledanswer = Label(diceroll, textvariable=droll)

    back = Button(diceroll, text="Back", command=back_)
    back.pack(side=BOTTOM)

    diceroll.mainloop()



diceselect = Tk()
diceselect.title("Select your dice")

Label(diceselect, text="Please select the dice you would like to roll").pack()

dice = StringVar()
dice.set("Six Sided Dice")

entry = OptionMenu(diceselect, dice, *names)
entry.configure(width=15)
entry.pack(side=LEFT)

cont = Button(diceselect, text="Continue", command=cont_)
cont.configure(width=15)
cont.pack(side=RIGHT)

diceselect.mainloop()

提前致谢!

4

1 回答 1

2

roll()使用global y中,因为您有赋值语句并想使用 global y

def roll():
    global y
    if y == 1:
    # other code

注意:当您进行分配时,y = 2 您正在本地命名空间中创建新y的(禁止使用全局y,因为本地y范围是函数)。

于 2013-10-15T17:52:08.913 回答