资源简介
Python开发计算器-多功能版,精简版1.0可以进入我的主页查找
代码片段和文件信息
‘‘‘
Function:
tkinter计算器
Author:
Charlie
‘‘‘
import math
import tkinter
root = tkinter.Tk()
root.resizable(width=False height=False)
‘‘‘hypeparameter‘‘‘
# 是否按下了运算符
IS_CALC = False
# 存储数字
STORAGE = []
# 显示框最多显示多少个字符
MAXSHOWLEN = 18
# 当前显示的数字
CurrentShow = tkinter.StringVar()
CurrentShow.set(‘0‘)
‘‘‘按下数字键(0-9)‘‘‘
def pressNumber(number):
global IS_CALC
if IS_CALC:
CurrentShow.set(‘0‘)
IS_CALC = False
if CurrentShow.get() == ‘0‘:
CurrentShow.set(number)
else:
if len(CurrentShow.get()) < MAXSHOWLEN:
CurrentShow.set(CurrentShow.get() + number)
‘‘‘按下小数点‘‘‘
def pressDP():
global IS_CALC
if IS_CALC:
CurrentShow.set(‘0‘)
IS_CALC = False
if len(CurrentShow.get().split(‘.‘)) == 1:
if len(CurrentShow.get()) < MAXSHOWLEN:
- 上一篇:python 极坐标图
- 下一篇:pyqt5图书管理系统源码+安装说明+数据库
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- svm-simple.py(matplotlib)
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- pygame贪吃蛇
- python turtle 跳房子
- python 人群计数
- 自动化测试(基于pytest)
- 基于树莓派的动态图像对比(py3_ob<
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
评论
共有 条评论