python 修改文件内容的程序

时间:2022-05-18 23:51:46
#1、修改文件的内容

#运行的时候要 python xxx.py hh.txt hehe haha
import sys,os
inputs = sys.argv
#存的是所有运行时候传进来的参数
#它就是用来获取在用python命令运行python文件的时候,传入的参数
#1、判断用户输入的是不是够个数
if len(inputs)<4:
print('参数不够,至少需要3个参数,e.g: python xx.py xx.txt old_str new_str..')
else:
file_name = inputs[1]
old_str = inputs[2]
new_str = inputs[3]
new_file_name = file_name+'.new'
if os.path.exists(file_name):#用它来判断文件是否存在
with open(file_name,encoding='gbk') as fr,open(new_file_name,'w') as fw:
for line in fr:
res = line.replace(old_str,new_str)#替换之后的内容
fw.write(res)
os.remove(file_name)
os.rename(new_file_name,file_name)
else:
print('文件不存在')