gpt4 book ai didi

python - 如何使用python一次从文件中读取两行

转载 作者:IT老高 更新时间:2023-10-28 21:34:31 25 4
gpt4 key购买 nike

我正在编写一个解析文本文件的 python 脚本。这个文本文件的格式是这样的,文件中的每个元素都使用两行,为了方便起见,我想在解析之前阅读这两行。这可以在 Python 中完成吗?

我想要一些类似的东西:

f = open(filename, "r")
for line in f:
line1 = line
line2 = f.readline()

f.close

但这打破了说:

ValueError: Mixing iteration and read methods would lose data

相关:

最佳答案

类似问题 here .您不能混合使用迭代和 readline,因此您需要使用其中之一。

while True:
line1 = f.readline()
line2 = f.readline()
if not line2: break # EOF
...

关于python - 如何使用python一次从文件中读取两行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1657299/

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