要修改一个txt文件的内容,可以使用以下代码示例:
# 打开文件
with open('example.txt', 'r') as file:
data = file.readlines()
# 修改文件内容
data[0] = 'New content\n'
# 写回文件
with open('example.txt', 'w') as file:
file.writelines(data)
在这个示例中,我们首先使用with open()
语句打开一个名为example.txt
的文件,并将文件内容读取到一个列表中。然后我们修改列表中的内容,将第一行的内容修改为New content
。最后,我们使用with open()
语句再次打开文件,并将修改后的内容写回到文件中。