使用python以相反的顺序读取文件

如何使用python以相反的顺序读取文件?我想从最后一行读取文件。

回答:

for line in reversed(open("filename").readlines()):

print line.rstrip()

在Python 3中:

for line in reversed(list(open("filename"))):

print(line.rstrip())

以上是 使用python以相反的顺序读取文件 的全部内容, 来源链接: utcz.com/qa/402169.html

回到顶部