永发信息网

用python的readlines读多行,怎样实现一次读10行,下次读下一个 10行?

答案:3  悬赏:60  手机版
解决时间 2021-04-04 21:38
  • 提问者网友:流星是天使的眼泪
  • 2021-04-04 00:11
用python的readlines读多行,怎样实现一次读10行,下次读下一个 10行?
最佳答案
  • 五星知识达人网友:不甚了了
  • 2021-04-04 00:29
指定hint参数为指定行数即可
readlines(hint=-1)
Read and return a list of lines from the stream. hint can be specified to control the number of lines read: no more lines will be read if the total size (in bytes/characters) of all lines so far exceeds hint.
Note that it’s already possible to iterate on file objects using for line in file: ... without calling file.readlines().
全部回答
  • 1楼网友:第幾種人
  • 2021-04-04 03:03
你这样,就是懒得看
  • 2楼网友:行路难
  • 2021-04-04 01:36
先读取完,然后10行10行的处理
text=open(filename).readlines()
while text:
lines=text[:10] #lines包括当前要处理的10行
text=text[10:] #text包括剩余的文本
#处理lines的代码
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯