# 需求: 把好人换成sb
# 必须:
# 1. 先从文件中读取内容
# 2. 把要修改的内容进行修改
# 3. 把修改好的内容写人一个新文件
# 4. 删除掉原来的文件
# 5. 把新文件重命名成原来的文件的名字
# 导入os模块 os表示操作系统
import os
# f = open("夸一夸alex", mode="r", encoding="utf-8")
# f2 = open("夸一夸alex_副本", mode="w", encoding="utf-8")
# with会自动的帮我们关闭文件的链接
with open("夸一夸alex", mode="r", encoding="utf-8") as f, \
open("夸一夸alex_副本", mode="w", encoding="utf-8") as f2:
for line in f:
if "好人" in line:
line = line.replace("好人", "sb")
f2.write(line)
# time.sleep(3) # 程序暂停3秒
# 删除原来文件
os.remove("夸一夸alex")
# 重命名副本为原来的文件名
os.rename("夸一夸alex_副本", "夸一夸alex")