Commit 9643dc78 by BellCodeEditor

save project

parent b8a1bd23
Showing with 17 additions and 3 deletions
with open("C:\\Users\\ASUS\\Desktop\\a.txt",'r',encoding='UTF-8')as a: a_b=''
with open("C:\\Users\\ASUS\\Desktop\\a.txt",'r',encoding='UTF-8') as a:
for bata in a: for bata in a:
if '小强:10本' in bata: if '小强:10本' in bata:
print('在') print('在')
bata=bata.replace('小强:10','小强:11')
else: else:
print('不在') print('不在')
\ No newline at end of file if '小兰:12本' in bata:
print('在')
bata=bata.replace('小兰:12','小兰:14')
else:
print('不在')
a_b+=bata
with open("C:\\Users\\ASUS\\Desktop\\a.txt",'w',encoding='UTF-8') as a:
a.write(a_b)
with open("C:\\Users\\ASUS\\Desktop\\a.txt",'r',encoding='UTF-8') as a:
s=a.read()
print(s)
\ 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