在 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)
在此方法中:
这种方法背后的原因是你不能直接编辑文本文件中的特定行。该文件只能被整行覆盖,因此需要使用更新的行重写整个文件。
以上是如何在 Python 中更新文本文件中的特定行?的详细内容。更多信息请关注PHP中文网其他相关文章!