ssplyh 发表于 2018-8-9 09:36:56

python文本替换工作记录

gamedb:/data/script/python # cat 1.py  
#!/usr/bin/python
  
file_object = open('txt/b.txt')
  
all_the_txt = file_object.read()
  
all_the_txt = all_the_txt.replace('b','D')
  
file_object2 = open(r'/data/script/python/aaa/b.txt','w')
  
file_object2.write(all_the_txt)
  
file_object.close()
  
file_object2.close()
页: [1]
查看完整版本: python文本替换工作记录