gpt4 book ai didi

python - 从 python 文本文件中的特定行开始迭代

转载 作者:太空宇宙 更新时间:2023-11-03 14:30:26 26 4
gpt4 key购买 nike

假设我有一个文本文件(名为 test.txt),我之前在我的 Python 脚本中向其中写入了 15 行。现在,我想向该文件附加一些行。我如何从 test.txt 的第 16 行开始迭代并在 Python 中向其追加一些新行?

最佳答案

要追加到文件末尾,您不需要“迭代”它——只需以追加模式打开它:

with open("my_file", "a") as f:
f.write("another line\n")

迭代文件可用于读取它们,而不是写入它们。

关于python - 从 python 文本文件中的特定行开始迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11847006/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com