gpt4 book ai didi

python - 提取文本文件的下一行

转载 作者:行者123 更新时间:2023-12-01 02:01:06 25 4
gpt4 key购买 nike

我正在尝试从 .txt 文件中提取特定信息。我已经找到了一种方法来隔离我需要的线路;然而,打印它们已被证明是有问题的。

with open('RCSV.txt','r') as RCSV:
for line in RCSV.read().splitlines():
if line.startswith(' THETA'):
print(line.next())

当我使用line.next()时它给了我这个错误:

"AttributeError: 'str' object has no attribute 'next'"

Here is a link to the .txt file
Here is a link to the area of the file in question

我想做的是提取以“THETA PHI”等开头的行后面的行。

最佳答案

您可以使用next(input),如下所示:

with open('RCSV.txt', "r") as input:
for line in input:
if line.startswith(' THETA'):
print(next(input), end='')
break

关于python - 提取文本文件的下一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49606909/

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