gpt4 book ai didi

file - 如何让python从包含一首诗的文件中读取每隔一行

转载 作者:行者123 更新时间:2023-12-05 00:42:44 24 4
gpt4 key购买 nike

我知道读取每一行的代码是

f=open ('poem.txt','r')
for line in f:
print line

如何让 python 从原始文件中只读偶数行。假设行数从 1 开始。

最佳答案

有很多不同的方法,这里简单的一种

with open('poem.txt', 'r') as f:
count = 0
for line in f:
count+=1
if count % 2 == 0: #this is the remainder operator
print(line)

这也可能更好一点,节省声明和增加计数的行:

with open('poem.txt', 'r') as f:
for count, line in enumerate(f, start=1):
if count % 2 == 0:
print(line)

关于file - 如何让python从包含一首诗的文件中读取每隔一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30551945/

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