diff --git a/diy.py b/diy.py
index 83e0080..21288f5 100644
--- a/diy.py
+++ b/diy.py
@@ -1,3 +1,4 @@
 # 写入同学们的捐赠明细:'小兰:12本'、'小丽:11本'、'李文:9本'、'张伟:16本'
-with open(r"C:\Users\1\Desktop\dfregt.txt",'a',encoding='utf-8') as file1:
-    file1.write("\n小兰:12本\n小丽:11本\n李文:9本\n张伟:16本")
+filel=open(r"C:\Users\1\Desktop\dfregt.txt",'w',encoding='utf-8')
+filel.write("'小兰:12本'、'小丽:11本'、'李文:9本'、'张伟:16本'")
+filel.close()
\ No newline at end of file