可以通过以下步骤实现:
file = open("example.txt", "w")
content = file.read()
new_content = content.replace("行中", "行中Python")
file.write(new_content)
file.close()
完整的代码示例:
# 打开文件
file = open("example.txt", "w")
# 读取文件内容
content = file.read()
# 插入单词
new_content = content.replace("行中", "行中Python")
# 保存文件
file.write(new_content)
# 关闭文件
file.close()
请注意,以上代码仅为示例,实际应用中可能需要根据具体情况进行适当的修改和优化。
领取专属 10元无门槛券
手把手带您无忧上云