实例介绍
【实例截图】
【核心代码】
#! /usr/bin/env python
#coding=utf-8
'''
除法在连续运算时,没法运算小数位,因为设置的是int,会直接取整
'''
from Tkinter import *
root = Tk(className = "计算器")
root.geometry("500x580")
class App:
def __init__(self, master):
frame1 = Frame(master,borderwidth = 10)
frame1.pack()
frame2 = Frame(master,borderwidth = 10)
frame2.pack()
frame3 = Frame(master,borderwidth = 10)
frame3.pack()
Button(frame2, text = "1",font = ("Courier 20 bold roman"),command=lambda: self.callback(1) ).grid(row=0,column=0)
Button(frame2, text = "2",font = ("Courier 20 bold roman"),command=lambda: self.callback(2) ).grid(row=0,column=1)
Button(frame2, text = "3",font = ("Courier 20 bold roman"),command=lambda: self.callback(3) ).grid(row=0,column=2)
Button(frame2, text = "4",font = ("Courier 20 bold roman"),command=lambda: self.callback(4) ).grid(row=1,column=0)
Button(frame2, text = "5",font = ("Courier 20 bold roman"),command=lambda: self.callback(5) ).grid(row=1,column=1)
Button(frame2, text = "6",font = ("Courier 20 bold roman"),command=lambda: self.callback(6) ).grid(row=1,column=2)
Button(frame2, text = "7",font = ("Courier 20 bold roman"),command=lambda: self.callback(7) ).grid(row=2,column=0)
Button(frame2, text = "8",font = ("Courier 20 bold roman"),command=lambda: self.callback(8) ).grid(row=2,column=1)
Button(frame2, text = "9",font = ("Courier 20 bold roman"),command=lambda: self.callback(9) ).grid(row=2,column=2)
Button(frame2, text = "0",font = ("Courier 20 bold roman"),command=lambda: self.callback(0) ).grid(row=3,column=0)
Button(frame2, text = " ",font = ("Courier 20 bold roman"),command=lambda: self.callback1(" ") ).grid(row=3,column=1)
Button(frame2, text = "-",font = ("Courier 20 bold roman"),command=lambda: self.callback1("-") ).grid(row=3,column=2)
Button(frame2, text ="*",font = ("Courier 20 bold roman"),command=lambda: self.callback1("*") ).grid(row=4,column=1)
Button(frame2, text ="/",font = ("Courier 20 bold roman"),command=lambda: self.callback1("/") ).grid(row=4,column=2)
Button(frame2, text="=",font = ("Courier 20 bold roman"),command=self.result).grid(row=4,column=0)
Button(frame3, text="clear",font = ("Courier 20 bold roman"),command=lambda: self.clear() ).grid()
label_1 = Label(frame1,text="输入数字")
label_1.pack()
self.a = IntVar()
self.a.set(0)
e1 = Entry(frame1,font = ("Courier 20 bold roman"),textvariable = self.a)
e1.pack(padx=20,pady = 5)
#label_2 = Label(frame1,text="第二次输入数字")
#label_2.pack()
#self.b = IntVar()
#self.b.set(0)
#e2 = Entry(frame1,font = ("Courier 20 bold roman"),textvariable=self.b)
#e2.pack(padx=20,pady = 5)
label_3 = Label(frame1,text="运算符号")
label_3.pack()
self.c = IntVar()
self.c.set("")
e3 = Entry(frame1,font = ("Courier 20 bold roman"), textvariable = self.c)
e3.pack(padx=20,pady = 5)
label_4 = Label(frame1,text="运算结果")
label_4.pack()
self.d = IntVar()
self.d.set(0)
e4 = Entry(frame1,font = ("Courier 20 bold roman"), textvariable = self.d)
e4.pack(padx=20,pady = 5)
#算式的左数
self.left = 0
#算式的右数
self.right = 0
#在标签中显示值的
self.i = 0
#实现多位数的
self.j = 0
#连续多次运算时,保存左数的
self.k = 0
#连续多次运算
#self.l = 0
#运算符
self.accept_sign = ""
def callback1(self,t):
if t == " ":
self.c.set(t)
self.result()
self.accept_sign = " "
elif t == "-":
self.c.set(t)
self.result()
self.accept_sign = "-"
elif t == "*":
self.c.set(t)
self.result()
self.accept_sign = "*"
else:
self.c.set(t)
self.result()
self.accept_sign = "/"
if self.k == 0:
self.left = self.a.get()
else:
self.left = self.k
self.j = 0
#self.l = 1
def callback(self,t):
if self.j == 0:
self.i = t
self.a.set(self.i)
if self.j == 1:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 2:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 3:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 4:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 5:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 6:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 7:
self.i = self.i * 10 t
self.a.set(self.i)
if self.j == 8:
self.i = self.i * 10 t
self.a.set(self.i)
self.j = 1
def result(self):
self.right = self.a.get()
if self.accept_sign == " ":
self.d.set(self.left self.right)
if self.accept_sign == "-":
self.d.set(self.left - self.right)
if self.accept_sign == "*":
self.d.set(self.left * self.right)
if self.accept_sign == "/":
self.d.set(float(self.left) / self.right)
else:
pass
self.k = self.d.get()
self.j = 0
#self.l = 0
def clear(self):
self.accept_sign = ""
self.a.set(0)
self.c.set("")
self.d.set(0)
self.j = 0
self.k = 0
self.left = 0
self.right = 0
#self.l = 0
App(root)
root.mainloop()
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明


网友评论
我要评论