作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道读取每一行的代码是
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/
我是一名优秀的程序员,十分优秀!