Tkinter中if语句的变量问题

时间:2019-01-13 23:43:02

标签: python tkinter

大家好,我的脚本有问题,因为当我启动它进行测试并按L0按钮时,会收到以下错误消息:

  

Tkinter回调中的异常     追溯(最近一次通话):     在“ 调用”中的文件“ /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/init.py”,行1705       返回self.func(* args)     在spegni中的文件“ nucleo.py”,第33行       值= int(previous_state.get())UnboundLocalError:赋值之前引用了本地变量'previous_state'

我显示我的完整代码:

import serial

import random

import time

from tkinter import *

from tkinter import messagebox

import os

previuos_state=0

def accendi():
  if previous_state == 0:
    TimeDelay = random.randrange(10,20)
    time.sleep(TimeDelay)

    ser.write('L1'.encode())

    previous_state = 1

    USER_TIME = list(ser.read(5).decode("utf8"))

    if USER_TIME[0] == 'T':


        USER_TIME = str(USER_TIME[1])+str(USER_TIME[2])+str(USER_TIME[3])+str(USER_TIME[4])

        print(str(int(USER_TIME,16))+" ms")

    else:

        print("Errore in ricezione")
  else:
    messagebox.showwarning("Attenzione", "Spegnere led per iniziare un nuovo test")
def spegni():

  if previous_state == 1:
    TimeDelay = random.randrange(10,20)
    time.sleep(TimeDelay)

    ser.write('L0'.encode())

    previous_state = 0

    USER_TIME = list(ser.read(5).decode("utf8"))

    if USER_TIME[0] == 'T':

        USER_TIME = str(USER_TIME[1])+str(USER_TIME[2])+str(USER_TIME[3])+str(USER_TIME[4])

        print(str(int(USER_TIME,16))+" ms")


    else:

        print("Errore in ricezione")

else:
    messagebox.showwarning("Attenzione", "Accendere led per iniziare un nuovo test")


finestra=Tk()
finestra.geometry("520x230")
finestra.title("Misuratore di riflessi")
testo=Label(finestra, text="Premere il pulsante L0 se il LED è acceso\nPremere il pulsante L1 se il LED è spento\nPremere  EXIT per uscire")
testo.grid(row=0, column=0, columnspan=3)
tasto1=Button(finestra, text="L0", command=spegni)
tasto1.grid(row=3, column=0)
tasto2=Button(finestra, text="L1", command=accendi)
tasto2.grid(row=3, column=2)
lista=Listbox(finestra)
lista.insert(END, "uno", "due", "tre", "quattro", "cinque", "sei", "sette", "otto")
lista.grid(row=0, column= 3, columnspan=5, rowspan=5)
tasto3=Button(finestra, text="EXIT", command=exit)
tasto3.grid(row=4, column=1)

finestra.mainloop()

我不明白为什么我不能在函数中使用变量“ previuous_state”。

2 个答案:

答案 0 :(得分:0)

先前状态在其初始声明中拼写错误

import serial

import random

import time

from tkinter import *

from tkinter import messagebox

import os

previuos_state=0

这会使您在函数开始时的检查失败,因为未声明变量

答案 1 :(得分:-1)

正确的代码:

import serial
import random
import time
from tkinter import *
from tkinter import messagebox
import os

previous_state=0

def stampa():
  print(previous_state)

def accendi():
  if previous_state == 0:
    TimeDelay = random.randrange(10,20)
    time.sleep(TimeDelay)

    ser.write('L1'.encode())

    previous_state = 1

    USER_TIME = list(ser.read(5).decode("utf8"))

    if USER_TIME[0] == 'T':


        USER_TIME = str(USER_TIME[1])+str(USER_TIME[2])+str(USER_TIME[3])+str(USER_TIME[4])

        print(str(int(USER_TIME,16))+" ms")

    else:

        print("Errore in ricezione")
   else:
    messagebox.showwarning("Attenzione", "Spegnere led per iniziare un nuovo test")

def spegni():
  if previous_state == 1:
    TimeDelay = random.randrange(10,20)
    time.sleep(TimeDelay)

    ser.write('L0'.encode())

    previous_state = 0

    USER_TIME = list(ser.read(5).decode("utf8"))

    if USER_TIME[0] == 'T':

        USER_TIME = str(USER_TIME[1])+str(USER_TIME[2])+str(USER_TIME[3])+str(USER_TIME[4])

        print(str(int(USER_TIME,16))+" ms")


    else:

        print("Errore in ricezione")

  else:
    messagebox.showwarning("Attenzione", "Accendere led per iniziare un nuovo test")


finestra=Tk()
finestra.geometry("520x230")
finestra.title("Misuratore di riflessi")
testo=Label(finestra, text="Premere il pulsante L0 se il LED è acceso\nPremere il pulsante L1 se il LED è spento\nPremere  EXIT per uscire")
testo.grid(row=0, column=0, columnspan=3)
tasto1=Button(finestra, text="L0", command=spegni)
tasto1.grid(row=3, column=0)
tasto2=Button(finestra, text="L1", command=accendi)
tasto2.grid(row=3, column=2)
lista=Listbox(finestra)
lista.insert(END, "uno", "due", "tre", "quattro", "cinque", "sei", "sette", "otto")
lista.grid(row=0, column= 3, columnspan=5, rowspan=5)     
tasto3=Button(finestra, text="EXIT", command=exit)
tasto3.grid(row=4, column=1)
tastoo=Button(finestra, text="STAMPA", command=stampa)
tastoo.grid(row=1, column=1)

finestra.mainloop()

我继续尝试,但是我不能将变量用于