python作业计算器

import tkinter root=tkinter.Tk() root.title(“计算器”)#窗体标题 root.geometry(‘200x200’)#主窗体大小设置 s=’’ def count(self): global s if self!=’=’: lb.config(text=self) s=s+self else: if “+” in s: lb.config(text=(f
相关文章
相关标签/搜索