如何在 Python 中更新文本文件中的特定行?

Mary-Kate Olsen
发布: 2024-11-14 22:59:02
原创
224 人浏览过

How to Update a Specific Line in a Text File in Python?

在 Python 中编辑文本文件中的特定行

您有一个包含数据行的文本文件,并且需要更新特定的行,比如第二行,具有新的值。您可能尝试过使用“myfile.writelines('Mage')[1]”,但它产生了错误的结果。

编辑文本文件中特定行的关键是将整个文件加载到内存中并将其作为行列表进行操作。操作方法如下:

# Read the file into a list of lines
with open('stats.txt', 'r') as file:
    data = file.readlines()

# Make the desired edit. Here, we're changing line 2 to 'Mage'.
data[1] = 'Mage\n'

# Write the updated list of lines back to the file
with open('stats.txt', 'w') as file:
    file.writelines(data)
登录后复制

在此方法中:

  • data = file.readlines() 将文件读入行列表。
  • data[1] = 'Magen' 将第二行更新为 'Mage'。
  • with open('stats.txt', 'w') as file:打开文件进行写入,并用更新的行重写全部内容。

这种方法背后的原因是你不能直接编辑文本文件中的特定行。该文件只能被整行覆盖,因此需要使用更新的行重写整个文件。

以上是如何在 Python 中更新文本文件中的特定行?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板