Commit f39abfe6 by BellCodeEditor

save project

parent eb8d807a
Showing with 6 additions and 1 deletions
......@@ -3,4 +3,8 @@ sb1=open(r'C:\Users\EDZ\Desktop\tese.txt','w',encoding='utf-8')
sb1.write('sb就是我')
sb1.close()
with open(r'C:\Users\EDZ\Desktop\tese.txt','a',encoding='utf-8') as sb1:
sb1.write('小兰死了')
sb1.write('小兰死了\n')
with open(r'C:\Users\EDZ\Desktop\tese.txt','r',encoding='utf-8') as sb1:
for date in sb1:
if'商务委输了'in date:
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