Commit ad011e68 by BellCodeEditor

save project

parent ea4cfd6e
Showing with 11 additions and 5 deletions
...@@ -3,7 +3,13 @@ ...@@ -3,7 +3,13 @@
#file1.write('小兰:12本\n') #file1.write('小兰:12本\n')
#file1.close() #file1.close()
################################################################################# #################################################################################
file1=open(r'C:\Users\DELL\Desktop\book.txt','a',encoding='utf-8') # file1=open(r'C:\Users\DELL\Desktop\book.txt','a',encoding='utf-8')
file1.write('小强:12本\n') # file1.write('小强:10本\n')
file1.write('李明:15本\n') # file1.write('李明:15本\n')
file1.close() # file1.close()
\ No newline at end of file with open(r'C:\Users\DELL\Desktop\book.txt','r',encoding='utf-8') as file:
for i in file:
if '小强:10本' in i:
print('小强数据在文件里')
if '小兰:12本' in i:
print('小兰数据在文件里')
\ 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