文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python如何使用tkinter做个简单的计算器

2023-06-14 11:43

关注

这篇文章主要介绍了python如何使用tkinter做个简单的计算器,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

设计思路

首先,导入我们需要的包 — tkinter,并通过 实例化一个 Tk 对象 创建窗口
因为我有点菜,目前还把控不好各组件的位置,所以窗口使用自动默认的大小

import tkinter as tkimport tkinter.messageboxwin = tkinter.Tk()win.title("计算器")win.mainloop()

大致 规划 各组件的 位置

我的目标是做成这个样子(最终效果)

python如何使用tkinter做个简单的计算器

大致规划好位置后,我创建了 四个 Frame,如下
u1s1,感觉两三个就够了

# 承载提示信息与输入框的框架entry_frame = tk.Frame(win)# 承载运算符号的框架menu_frame = tk.Frame(win)# 承载数字的框架major_frame = tk.Frame(win)# 承载等号的框架cal_frame = tk.Frame(win)entry_frame.pack(side="top")menu_frame.pack(side="left")major_frame.pack()cal_frame.pack(side="right")

下面就做一个 输入框,分为两部分

t_label = tk.Label(entry_frame, text = "请输入 : ")t_label.pack(side='left')word_entry = tk.Entry(    entry_frame,    fg = "blue", # 输入字体颜色,设置为蓝色    bd = 3, # 边框宽度    width = 39, # 输入框长度    justify = 'right' # 设置对齐方式为靠右)word_entry.pack()

然后在下面的左侧 排列运算符号

for char in ['+', '-', '×', '÷']:    myButton(menu_frame, char, word_entry)

其中,myButton 类实例化一个按钮,并且当点击按钮时,输入框会出现相应的文本
当时遇到了问题 — 点击按钮无法获得争取的按钮上的文本你, 解决后写了一篇博客,传送门

用相同的办法 列举各个数字

for i in range(4):    num_frame = tk.Frame(major_frame)    num_frame.pack()    if i < 3:        for count in range(3*i+1, 3*i+4):            myButton(num_frame, count, word_entry, side=(i, count))        continue    myButton(num_frame, 0, word_entry, side=(i, 0))

当然,重置按钮和计算按钮 可不能忘
最后的计算就懒了一点,直接使用 entry.get() 获得要计算的式子,使用 eval() 函数计算,如果格式错误即弹窗提示

def calculate(entry):    try:        result = entry.get()        # 如果输入框中不存在字符串,则 = 按钮不管用        if result == '':            return        result = eval(result)        entry.delete(0, "end")        entry.insert(0, str(result))    except:        tkinter.messagebox.showerror("错误", "格式错误!\n请重新输入!")reset_btn = tk.Button(    cal_frame,    text = '重置',    activeforeground = "blue",    activebackground = "pink",    width = "13",    command = lambda :word_entry.delete(0, "end")).pack(side="left")result_btn = tk.Button(    cal_frame,    text = '=',    activeforeground = "blue",    activebackground = "pink",    width = "13",    command = lambda :calculate(word_entry)).pack(side="right")

全部代码

major.py

# -*- coding=utf-8 -*-# @Time    : 2021/3/4 13:06# @Author  : lhys# @FileName: major.pymyName = r'''    Welcome, my master!    My Name is :     ____                ____        ____        ____         ____              ______________    |    |              |    |      |    |      |    \       /    |           /              /    |    |              |    |      |    |      |     \     /     |          /              /    |    |              |    |      |    |      |      \   /      |         /              /    |    |              |    |      |    |       \      \_/      /         /       _______/    |    |              |    |______|    |        \             /          \            \    |    |              |                |         \           /            \            \    |    |              |     ______     |          \         /              \            \    |    |              |    |      |    |           \       /                \________    \    |    |              |    |      |    |            |     |               /              /    |    |_______       |    |      |    |            |     |              /              /    |            |      |    |      |    |            |     |             /              /    |____________|      |____|      |____|            |_____|            /______________/    '''print(myName)import tkinter as tkfrom tools import *win = tk.Tk()win.title('计算器')entry_frame = tk.Frame(win)menu_frame = tk.Frame(win)major_frame = tk.Frame(win)cal_frame = tk.Frame(win)entry_frame.pack(side="top")menu_frame.pack(side="left")major_frame.pack()cal_frame.pack()# 输入框t_label = tk.Label(entry_frame, text = "请输入 : ")t_label.pack(side='left')word_entry = tk.Entry(    entry_frame,    fg = "blue",    bd = 3,    width = 39,    justify = 'right')word_entry.pack()# 菜单栏for char in ['+', '-', '×', '÷']:    myButton(menu_frame, char, word_entry)button_side = ['right', 'left']for i in range(4):    num_frame = tk.Frame(major_frame)    num_frame.pack()    if i < 3:        for count in range(3*i+1, 3*i+4):            myButton(num_frame, count, word_entry, side=(i, count))        continue    myButton(num_frame, 0, word_entry, side=(i, 0))reset_btn = tk.Button(    cal_frame,    text = '重置',    activeforeground = "blue",    activebackground = "pink",    width = "13",    command = lambda :word_entry.delete(0, "end")).pack(side="left")result_btn = tk.Button(    cal_frame,    text = '=',    activeforeground = "blue",    activebackground = "pink",    width = "13",    command = lambda :calculate(word_entry)).pack(side="right")win.mainloop()

tools.py

# -*- coding=utf-8 -*-# @Time    : 2021/3/4 13:20# @Author  : lhys# @FileName: tools.pyimport tkinterimport tkinter.messageboxdef calculate(entry):    try:        result = entry.get()        if result == '':            return        result = eval(result)        print(result)        entry.delete(0, "end")        entry.insert(0, str(result))    except:        tkinter.messagebox.showerror("错误", "格式错误!\n请重新输入!")class myButton():    def __init__(self, frame, text, entry, **kwargs):        side = kwargs.get('side') if 'side' in kwargs else ()        self.btn = tkinter.Button(            frame,            text = text,            activeforeground="blue",            activebackground="pink",            width="13",            command=lambda :entry.insert("end", text)        )        if side:            self.btn.grid(row=side[0], column=side[1])        else:            self.btn.pack()

感谢你能够认真阅读完这篇文章,希望小编分享的“python如何使用tkinter做个简单的计算器”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯