当我尝试使用tkinter创建转换程序时,我在解析时遇到了意外EOF错误。这是我的代码:
from tkinter import *
from tkinter.ttk import *
class conversion:
def centi():
def centiMet():
meStr=a.get()
meStrc = eval(meStr)
con=meStrc/100
conS=str(con)
CenMet2=Label(root,text=conS + " Meters",font="CenturyGothic 12 bold").pack()
return
rootCm= Tk()
a = StringVar()
rootCm.geometry("500x300")
rootCm.title("Quick Reference Application - Version 0.1.8 [alpha] ")
label1= Label(rootCm,text="Unit Conversions",font="CenturyGothic 17 bold").pack()
inputCm= Entry(rootCm,textvariable=a).pack()
convButton1= Button(rootCm,text="Convert!",command = centiMet).pack()
root= Tk()
root.geometry("500x300")
root.title("Quick Reference Application - Version 0.1.8 [alpha] ")
label1= Label(root,text="Unit Conversions",font="CenturyGothic 17 bold").pack()
CenMet1= Label(root,text="Please select the type you want!!",font="CenturyGothic 12 bold").pack()
convButton1= Button(root,text="Centimeters to Meters",command = conversion.centi).pack()
单击厘米到米的按钮并尝试转换后,将显示错误。它在我尝试按钮启动cm到米的新窗口之前工作正常。有没有人有任何建议?
答案 0 :(得分:4)
正如您所注意到的,问题似乎与第二个Tk()
元素有关。我不是100%确定为什么会出现这种情况,但如果您使用Toplevel
窗口,它似乎有效。
class conversion:
def centi():
def centiMet():
meStr = a.get()
con = float(meStr) / 100
Label(rootCm, text="{} Meters".format(con), font="CenturyGothic 12 bold").pack()
rootCm = Toplevel()
rootCm.geometry("500x300")
a = StringVar()
Label(rootCm, text="Unit Conversions", font="CenturyGothic 17 bold").pack()
Entry(rootCm, textvariable=a).pack()
Button(rootCm, text="Convert!", command=centiMet).pack()
更多指示:
eval
;使用float
代替label = Label(...).pack()
会将pack()
的结果分配给label
,而非实际标签;另外,你似乎还不需要那些变量如果要在转换多个度量时重复使用相同的标签,请使用另一个StringVar
:
class conversion:
def centi():
def centiMet():
b.set("{} Meters".format(float(a.get()) / 100))
...
b = StringVar()
Label(rootCm, textvariable=b, font="CenturyGothic 12 bold").pack()