Python tkinter实现简单加法计算器代码实例
作者:Iceberg_710815 时间:2024-01-03 03:58:49
tkinter 是 Python 的标准 GUI 库。Python 使用 tkinter 可以快速的创建 GUI 应用程序。由于 tkinter 是内置到 python 的安装包中、只要安装好 Python 之后就能 import tkinter 库、而且 IDLE 也是用 tkinter 编写而成、对于简单的图形界面 tkinter 还是能应付自如。
代码如下
from tkinter import *
def Calculate():
a1 = int(text1.get('1.0', END)) # 从行首取到行尾
a2 = int(text2.get('1.0', END))
a3 = a1 + a2
text3.delete('1.0', END)
text3.insert(INSERT, a3)
root = Tk()
root.title('myTitle')
label1 = Label(root, text = 'First Number:')
label1.grid(row = 0, column = 0)
text1 = Text(root, width = 30, height = 1)
text1.grid(row= 1, column = 0)
label2 = Label(root, text = 'Second Number:')
label2.grid(row = 2, column = 0)
text2 = Text(root, width = 30, height = 1)
text2.grid(row = 3, column = 0)
label3 = Label(root, text = 'Result:')
label3.grid(row = 4, column = 0)
text3 = Text(root, width = 30, height = 1)
text3.grid(row = 5, column = 0)
button1 = Button(root, text = 'Calculate', command = Calculate)
button1.grid(row = 6, column = 0)
mainloop()
运行结果显示:
这是最简单的一个利用tkinter包实现的小程序, 实现了输入数据,计算求和并显示计算结果的功能。
来源:https://www.cnblogs.com/iceberg710815/p/12527012.html
标签:Python,tkinter,计算器
0
投稿
猜你喜欢
最新版 Windows10上安装Python 3.8.5的步骤详解
2021-12-31 00:50:29
T-SQL 查询语句的执行顺序解析
2011-11-03 17:04:06
python创建文本文件的简单方法
2021-02-22 02:00:09
解决tensorflow测试模型时NotFoundError错误的问题
2021-08-02 09:33:56
C#简单连接sql数据库的方法
2024-01-14 09:01:27
python实现某考试系统生成word试卷
2022-05-20 18:29:09
python实现中文转换url编码的方法
2021-05-26 08:46:57
较完善的日历组件js源码(兼容)
2010-08-08 08:43:00
Python 文件操作的详解及实例
2021-06-05 12:59:12
python文件拆分与重组实例
2021-10-10 18:10:25
Django admin禁用编辑链接和添加删除操作详解
2021-01-13 05:01:01
Golang之casbin权限管理的实现
2024-05-09 14:54:28
Python使用future处理并发问题方案详解
2022-12-10 18:16:53
Oracle与MySQL删除字段时对索引和约束的处理
2008-12-26 16:41:00
使用Django的模版来配合字符串翻译工作
2023-11-17 06:03:47
SQL Server 交叉表查询 case
2024-01-18 19:05:48
C#如何在窗体程序中操作数据库数据
2024-01-22 13:31:41
python实现简单银行管理系统
2021-01-24 17:59:28
c#将Excel数据导入到数据库的实现代码
2024-01-25 21:53:43
Python爬取求职网requests库和BeautifulSoup库使用详解
2021-12-29 09:07:49