|

楼主 |
发表于 2024-12-22 16:20:45
|
显示全部楼层
step4:输入框的使用
- from tkinter import *
- def run1():
- a = float(inp1.get())
- b = float(inp2.get())
- s = '=%0.2f' % (a + b)
- lb1.config(text = s)
- #inp1.delete(0, END) # 清空输入
- #inp2.delete(0, END) # 清空输入
- root = Tk()
- root.geometry('460x240')
- root.title('简单加法器')
- #输入框
- inp1 = Entry(root)
- inp1.place(relx=0.1, rely=0.2, relwidth=0.1, relheight=0.1)
- inp2 = Entry(root)
- inp2.place(relx=0.3, rely=0.2, relwidth=0.1, relheight=0.1)
- # 按键
- btn1 = Button(root, text='求和', command=run1)
- btn1.place(relx=0.1, rely=0.4, relwidth=0.3, relheight=0.1)
- #标签
- lb1 = Label(root, text="=?")
- lb1.place(relx=0.4, rely=0.2, relwidth=0.1, relheight=0.1)
- lb2 = Label(root, text="+")
- lb2.place(relx=0.2, rely=0.2, relwidth=0.1, relheight=0.1)
- root.mainloop()
复制代码 |
|