Commit ddc2d456 by BellCodeEditor

auto save

parent 92b1861c
Showing with 7 additions and 6 deletions
...@@ -6,9 +6,11 @@ ...@@ -6,9 +6,11 @@
#book1.write("'小强:12本'\n'李明:15本'") #book1.write("'小强:12本'\n'李明:15本'")
#book1.close() #book1.close()
new_date = "" new_date = ""
with open(r'C:\Users\Administrator\Desktop\book.txt','w',encoding='utf-8') as file: with open(r'C:\Users\Administrator\Desktop\book.txt','r',encoding='utf-8') as file:
for i in : for i in file:
if '小强:12本'in file: if '小强:12本'in i:
i=i.replace('小强:12本','小强:13本') i=i.replace('小强:12本','小强:13本')
new_date+=file new_date+=i
print(new_date) print(new_date)
\ No newline at end of file with open(r'C:\Users\Administrator\Desktop\book.txt','w',encoding='utf-8') as file:
file.write(new_date)
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