python倒读文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python倒读文件相关的知识,希望对你有一定的参考价值。
with open(‘log.txt‘,‘rb‘) as fd:
for i in fd:
offs=-5
while True:
fd.seek(offs,2)
data=fd.readlines()
if len(data) > 1:
print(‘文件的最后一行是%s‘ %(data[-1].decode(‘utf-8‘)))
break
offs*=2
本文出自 “学习交流” 博客,请务必保留此出处http://725689.blog.51cto.com/715689/1973394
以上是关于python倒读文件的主要内容,如果未能解决你的问题,请参考以下文章