免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2628 | 回复: 1
打印 上一主题 下一主题

最强悍的从文件的最后行开始读取行数,谁能解释一下这条语句? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-01-05 15:02 |只看该作者 |倒序浏览
  1.     def tail(f, n, offset=None):
  2.         """Reads an lines from f with an offset of offset lines. The return value is a tuple
  3.         in the form ``(lines, has_more)`` where `has_more` is an indicator that is `True`
  4.         if there are more lines in the file. """
  5.         avg_line_length = 74
  6.         to_read = n + (offset or 0)
  7.         while 1:
  8.             try: f.seek(-(avg_line_length * to_read), 2)
  9.             except IOError: # woops. apparently file is smaller than what we want # to step back, go to the beginning instead
  10.                 f.seek(0)
  11.             pos = f.tell()
  12.             lines = f.read().splitlines() #分行
  13.             if len(lines) >= to_read or pos == 0:
  14.                 return lines[-to_read:offset and -offset or None],len(lines) > to_read or pos > 0
  15.             avg_line_length *= 1.3
复制代码
return lines[-to_readffset and -offset or None],len(lines) > to_read or pos > 0

谁能解释一下上面这条语句?

论坛徽章:
0
2 [报告]
发表于 2011-01-05 15:14 |只看该作者
sorry,我既然不知道元组的定义方法

>>> c = 1,2
>>> c
(1, 2)

>>>lst = []
>>> lst[1:True and True or None]
[]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP