我已经做了很多工作,我尝试的一切似乎都无法解决问题。我对这种编程语言的细微差别缺乏经验。我很感激任何提示。
from tkinter import *
root = Tk()
lbltitle = Label(root, text="Adding Program")
lbltitle.grid(row=0, column=3)
lbllabelinput = Label(root, text="Input first number")
lbllabelinput.grid(row=1, column=0)
entnum1 = Entry(root, text=1)
entnum1.grid(row=1, column=1)
lbllabelinput2 = Label(root, text="Input Second number")
lbllabelinput2.grid(row=1, column=2)
entnum2 = Entry(root, text=1)
entnum2.grid(row=1, column=3)
def callback():
ent1 = entnum1.get()
ent2 = entnum2.get()
if ent1 != 0 and ent2 != 0:
result = int(ent1) + int(ent2)
lblresult = Label(root, text=str(result))
lblresult.grid(row=3)
btnadd = Button(root, text="add", command=callback())
btnadd.grid(row=2)
root = mainloop()
这里是追溯
Traceback (most recent call last):
File "/Users/matt9878/Google Drive/AddingProgram/AddingProgram.py", line 31, in <module>
btnadd = Button(root, text="add", command=callback())
File "/Users/matt9878/Google Drive/AddingProgram/AddingProgram.py", line 27, in callback
result = int(ent1) + int(ent2)
ValueError: invalid literal for int() with base 10: ''
答案 0 :(得分:3)
btnadd = Button(root, text="add", command=callback())
callback
此处不应有括号。这使得函数立即执行,而不是等待按下按钮。
btnadd = Button(root, text="add", command=callback)
此外,if ent1 != 0 and ent2 != 0
始终会评估为True
,因为ent1
和ent2
始终是字符串,字符串永远不会等于零。也许你的意思是if ent1 != '' and ent2 != '':
,或只是if ent1 and ent2:
此外,您应该从Entry对象中删除text
属性。我不知道他们应该做什么,因为我没有在文档中看到它,但看起来只要它们都等于一个,输入一个输入将导致相同的文本出现在另一个条目中。