Commit 398310d7 by BellCodeEditor

auto save

parent 52521935
Showing with 6 additions and 9 deletions
# 写入同学们的捐赠明细:'小兰:12本'、'小丽:11本'、'李文:9本'、'张伟:16本' with open(r"c:\Users\Administrator\Desktop\book.txt",'r',encoding="utf-8") as file:
file=open(r"c:\Users\Administrator\Desktop\book.txt","w",encoding="utf-8") for data in file:
#文件写入 if "小强" in data:
file.write("小兰:12本\n") print("小强存在")
file.write("小丽:11本\n") if "小兰" in data:
file.write("李文:9本") print("小兰存在的")
file.write("张伟:16本")
#文件关闭
file.close()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment