1. 首页
  2. 数据库
  3. 其它
  4. python 实现简单的计算器(gui界面)

python 实现简单的计算器(gui界面)

上传者: 2020-12-22 13:26:42上传 PDF文件 36.06KB 热度 18次
运行效果: 完整代码 from tkinter import * def click(num): global op op=op+str(num) iptext.set(op) def evaluate(): global op output=str(eval(op)) iptext.set(output) def clearDisplay(): global op op="" iptext.set(op) calc=Tk() calc.title("TechVidvan Calculator") op="" iptext=StringV
用户评论