python 修改文件的内容

复制代码

# 打开旧文件
f = open('file_text.txt','r',encoding='utf-8')

# 打开新文件
f_new = open('file_text_bak.txt','w',encoding='utf-8')


# 循环读取旧文件
for line in f:
    # 进行判断
    if "Good day is good day" in line:
        line = line.replace('Good day is good day','hello,yanyan')
    # 如果不符合就正常的将文件中的内容读取并且输出到新文件中
    f_new.write(line)

f.close()
f_new.close()

复制代码

 

 

 

备注:

 

1. 旧文件的内容

hello,world
yanyan is good girl
Good day is good day

2. 新文件在代码执行后的内容

hello,world
yanyan is good girl
hello,yanyan

3. 需要注意的是权限的问题,对于旧文件必须要有读取权限,对于新的文件必须要有写入权限

你可能感兴趣的:(python)