• 大小: 2KB
    文件类型: .py
    金币: 2
    下载: 1 次
    发布日期: 2021-06-10
  • 语言: Python
  • 标签: python  tkinter  

资源简介

使用python tkinter制作计算器源代码,自己思考逻辑,借鉴了一些大神的思路,写了一个不是很完善的计算器

资源截图

代码片段和文件信息

from tkinter import *

def frame(root side):
    w = frame(root)
    w.pack(side=side expand=YES fill=BOTH)
    return w

def button(root side text command=None):
    w = Button(root text=text command=command)
    w.pack(side=side expand=YES fill=BOTH)
    return w

class Calculator(frame):
    def __init__(self):
        frame.__init__(self)
        self.option_add(‘*Font‘ ‘Verdana 12 bold‘)
        self.pack(expand=YES fill=BOTH)
        self.master.title(‘Simple Calculator‘)
        self.master.iconname(“calc1“)

        display = StringVar()
        Entry(self relief=SUNKENtextvariable=display).pack(side=TOP expand=YESfill=BOTH)

        for key in (“123“ “456“ “789“ “-0.“):
            keyF = frame(self TOP)
            for char in key:
          

评论

共有 条评论