资源简介
为家里人做的一个简单的录入生成小工具,录完之后自动生成excel,附带编译好的exe文件,代码也公开,欢迎相互学习指导
代码片段和文件信息
# -*- coding: utf-8 -*-
import xlsxwriter
import time
price_all = {}
data_kind = []
data_all = {}
line_total = 0
price_filename = ‘price.txt‘
before_date_filename = ‘before_date.txt‘
with open(price_filename ‘r‘ encoding=‘UTF-8‘) as f:
for line in f:
date_temp = line.split(“:“ 1)
price_all[date_temp[0]] = int(date_temp[1])
print(price_all)
def dump_kinds():
j = 0
print(“选择种类:“)
for kind in price_all:
data_kind.append(kind)
j = j + 1
print(str(j) + “:“ + kind)
date_before = ‘‘
def write_data():
global data_all date_before
while True:
print(“--------------账单录入中-----------------“)
if date_before == ‘‘:
print(“退出请输入\‘q\‘,否则请输入时间:“)
else:
print(“退出请输入\‘q\‘,否则输入时间,如果时间和之前相同,请输入 \‘s\‘:“)
date = input()
if date == ‘q‘: break
if date == ‘‘: continue
if date == ‘s‘:
date = date_before
date_before = date
print(“-----------------------------------------------------“)
dump_kinds()
chose_num = input()
print(“-----------------------------------------------------“)
print(“输入数据:“)
input_num = input()
print(“-----------------------------------------------------“)
print(“请确认输入的数据是否准确:Y or N“)
print (“\n\n\n\n“)
print(“******************************************************“)
print(“|时间:“ + date + “ | 种类:“ + data_kind[int(chose_num) - 1] + “ | 数量:“ + input_num + “|“)
print(“******************************************************“)
print (“\n\n\n\n“)
sure_flag = input()
data_num_temp = 0
if sure_flag == ‘y‘ or sure_flag == ‘Y‘:
if date in data_all:
if chose_num in data_all[date]:
data_num_temp = data_all[date][chose_num]
data_info = {chose_num: eval(input_num) + data_num_temp}
data_all[date].update(data_info)
else:
data_all[date] = {chose_num: eval(input_num)}
else:
print (“\n“)
print(‘######################################################‘)
print(‘!!!!!WARNING:刚才的数据没有保存,请注意!!!!!‘)
print(‘######################################################‘)
print (“\n“)
print(data_all)
with open(before_date_filename ‘w‘ encoding=‘UTF-8‘) as f:
f.write(str(data_all))
f.close()
def continue_check():
try:
f = open(before_date_filename)
f.close()
except IOError:
return
while True:
print(“是否继续之前的数据进行操作?Y or N“)
continue_flag = input()
if continue_flag == ‘y‘ or continue_flag == ‘Y‘:
global data_all line_total
with open(before_date_filename ‘r‘ encoding=‘UTF-8‘) as f:
lines = f.readline
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 45 2020-05-14 11:10 python记账小工具\price.txt
文件 5316 2020-05-25 10:22 python记账小工具\scratch_1.py
文件 8956009 2020-05-25 10:26 python记账小工具\账单录入小工具V1.4.exe
目录 0 2020-07-10 11:26 python记账小工具
----------- --------- ---------- ----- ----
8961370 4
相关资源
- 流畅的Python 官方中文 高清完整.pdf版
- 从Python开始学编程PDF完整版,带目录
- Hands-On_Reinforcement_Learning_with_Python
- 机器学习实战python实现
- Python核心编程第二版中文高清完整.
- 裘宗燕-数据结构与算法python描述-pp
- Pillow-8.0.1-cp37-cp37m-win_amd64.whl
- python2.6 opencv win 32
- Introduction to Python
- python飞机大战项目.zip
- 小甲鱼零基础学习python课后习题
- opencv3+python人脸检测和识别- 完整实战
- 小甲鱼《零基础入门学习Python》学习
- python元胞自动机模拟生态环境草羊狼
- python 直方图规定化代码
- GRAYHATPYTHON高清.英文.书签版.pdf
- Python Pocket Reference 第五版-带书签目录
- Python编程无师自通——专业程序员的
- python win32com 编程参考手册
- Python简明教程第四版.rar
- python数据挖掘入门与实践 pdf 高清完整
- opencv3+python人脸检测和识别 完整项目
- opencv3视频中检测人脸python
- 笨办法学 Python(第四版pdf 英文原版
- 深入理解Python中文版高清PDF
- 编写高质量代码改善Python程序的91个建
- 流畅的python 中文 PDF版
- xgboost最简单的文件 支持python-3.6-64位
- Python语言程序设计原版 梁勇 pdf
-
lxm
l-4.3.3-cp38-cp38m-win_amd64.whl
评论
共有 条评论