首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
如存专题
十六、银行ATM流水日志保存。启动程序时,可以选择存款、取款操作。每次操作会把流水记录下来,如存100记成 +100 ,取50记成 -50,操作结束后,把所有的记录写到一个文件里,下次执行时继续使用
import os#还没有创建过日志,首先创建if not os.path.exists("D:/流水.txt"):f = open("D:/流水.txt",'w')f.close()#读取上次保存好的日志内容f = open("D:/流水.txt",'r')log = f.read()f.close()#进行新的操作while 1:a = int(input("请选择操作:1存款
阅读更多...