Commit ee3d599f by BellCodeEditor

save project

parent e0d1a6dd
Showing with 12 additions and 6 deletions
# 写入同学们的捐赠明细:'小兰:12本'、'小丽:11本'、'李文:9本'、'张伟:16本' # 写入同学们的捐赠明细:'小兰:12本'、'小丽:11本'、'李文:9本'、'张伟:16本'
d=open(r"D:\桌面\s.txt","w",encoding="utf-8") #d=open(r"D:\桌面\s.txt","w",encoding="utf-8")
d.write("小兰:12\n") #d.write("小兰:12\n")
d.write('小丽:11本\n') #d.write('小丽:11本\n')
d.write('李文:9本\n') #d.write('李文:9本\n')
d.close() #d.close()
\ No newline at end of file #d=open(r"D:\桌面\s.txt","a",encoding="utf-8")
#d.write("小红:34本\n")
#.close
with open(r"D:\桌面\s.txt","r",encoding="utf-8") as d:
a=d.read()
print(a)
\ No newline at end of file
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