Python基于tkinter做学生版的计算器
前言
Tkinter是Python内置的GUI工具包,可以用来制作各种窗口应用程序。在本篇攻略中,我们将使用Tkinter工具包来制作一款学生版的计算器,主要用于学生的简单计算。
界面设计
这里我们使用Tkinter内置的组件来完成计算器的UI设计,包括一个文本框和若干个按钮。其中文本框用于显示计算结果,按钮用于响应用户操作。
我们需要创建一个主窗口,并在窗口中添加一个文本框和若干个按钮。具体实现方式如下:
import tkinter as tk
root = tk.Tk()
root.title("学生版计算器")
text = tk.Entry(root, width=50, borderwidth=5, justify='right')
text.grid(row=0, column=0, columnspan=4, padx=10, pady=10)
button_1 = tk.Button(root, text="1", padx=40, pady=20, command=lambda: button_click(1))
button_2 = tk.Button(root, text="2", padx=40, pady=20, command=lambda: button_click(2))
button_3 = tk.Button(root, text="3", padx=40, pady=20, command=lambda: button_click(3))
button_4 = tk.Button(root, text="4", padx=40, pady=20, command=lambda: button_click(4))
button_5 = tk.Button(root, text="5", padx=40, pady=20, command=lambda: button_click(5))
button_6 = tk.Button(root, text="6", padx=40, pady=20, command=lambda: button_click(6))
button_7 = tk.Button(root, text="7", padx=40, pady=20, command=lambda: button_click(7))
button_8 = tk.Button(root, text="8", padx=40, pady=20, command=lambda: button_click(8))
button_9 = tk.Button(root, text="9", padx=40, pady=20, command=lambda: button_click(9))
button_0 = tk.Button(root, text="0", padx=40, pady=20, command=lambda: button_click(0))
button_add = tk.Button(root, text="+", padx=39, pady=20, command=button_add)
button_subtract = tk.Button(root, text="-", padx=41, pady=20, command=button_subtract)
button_multiply = tk.Button(root, text="*", padx=40, pady=20, command=button_multiply)
button_divide = tk.Button(root, text="/", padx=41, pady=20, command=button_divide)
button_clear = tk.Button(root, text="清空", padx=30, pady=20, command=button_clear)
button_equals = tk.Button(root, text="=", padx=91, pady=20, command=button_equals)
button_1.grid(row=1, column=0)
button_2.grid(row=1, column=1)
button_3.grid(row=1, column=2)
button_4.grid(row=2, column=0)
button_5.grid(row=2, column=1)
button_6.grid(row=2, column=2)
button_7.grid(row=3, column=0)
button_8.grid(row=3, column=1)
button_9.grid(row=3, column=2)
button_0.grid(row=4, column=0)
button_clear.grid(row=4, column=1)
button_equals.grid(row=4, column=2, columnspan=2)
button_add.grid(row=5, column=0)
button_subtract.grid(row=6, column=0)
button_multiply.grid(row=6, column=1)
button_divide.grid(row=6, column=2)
# 主循环
root.mainloop()
主要实现的功能:
1. 创建主窗口
2. 创建文本框
3. 创建若干个Button按钮,并为其设置响应事件
4. 将所有的按钮按照布局放置到主窗口上
计算器逻辑
计算器的实现,核心是要完成简单的数学计算,我们通过使用Python对字符串运算表达式求值的函数eval()
,来实现计算器的逻辑。
响应事件函数
我们需要为计算器中的每个按钮定义响应事件函数,具体实现方式如下:
def button_click(number):
current = text.get()
text.delete(0, tk.END)
text.insert(0, str(current) + str(number))
def button_clear():
text.delete(0, tk.END)
def button_add():
first_number = text.get()
global f_num
global math
math = "addition"
f_num = int(first_number)
text.delete(0, tk.END)
def button_subtract():
first_number = text.get()
global f_num
global math
math = "subtraction"
f_num = int(first_number)
text.delete(0, tk.END)
def button_multiply():
first_number = text.get()
global f_num
global math
math = "multiplication"
f_num = int(first_number)
text.delete(0, tk.END)
def button_divide():
first_number = text.get()
global f_num
global math
math = "division"
f_num = int(first_number)
text.delete(0, tk.END)
def button_equals():
second_number = text.get()
text.delete(0, tk.END)
if math == "addition":
text.insert(0, f_num + int(second_number))
elif math == "subtraction":
text.insert(0, f_num - int(second_number))
elif math == "multiplication":
text.insert(0, f_num * int(second_number))
elif math == "division":
text.insert(0, f_num / int(second_number))
实例说明
示例1
用户点击了数字“2”、“3”和“4”,然后点击了加号,接着又点击了数字“5”和“6”,最后点击了等号。计算器应该显示出34+56=90的计算结果。
示例2
用户点击了数字“1”、“2”、“3”和“4”,然后依次点击了减号、数字“5”和数字“6”,最后点击了等号。计算器应该显示出1234-56=1178的计算结果。
总结
通过本篇攻略的介绍,你已经掌握了如何使用Python语言以及Tkinter工具包来开发一个简单的计算器应用。希望这篇文章可以对你有所帮助。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python 基于 tkinter 做个学生版的计算器 - Python技术站