gpt4 book ai didi

python - 在读取 Python 文件中的行时跳过前几行

转载 作者:IT老高 更新时间:2023-10-28 20:32:26 37 4
gpt4 key购买 nike

我想在阅读文本文件时跳过前 17 行。

假设文件如下所示:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
good stuff

我只想要好东西。我正在做的事情要复杂得多,但这是我遇到问题的部分。

最佳答案

使用切片,如下所示:

with open('yourfile.txt') as f:
lines_after_17 = f.readlines()[17:]

如果文件太大而无法加载到内存中:

with open('yourfile.txt') as f:
for _ in range(17):
next(f)
for line in f:
# do stuff

关于python - 在读取 Python 文件中的行时跳过前几行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9578580/

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