gpt4 book ai didi

python - 打印用 Python 读入的文件的最后一行

转载 作者:太空狗 更新时间:2023-10-30 01:40:00 24 4
gpt4 key购买 nike

我如何打印用python读入的文本文件的最后一行?

fi=open(inputFile,"r")
for line in fi:
#go to last line and print it

最佳答案

一种选择是使用 file.readlines():

f1 = open(inputFile, "r")
last_line = f1.readlines()[-1]
f1.close()

但是,如果之后不需要该文件,建议使用 with 的上下文,以便文件在之后自动关闭:

with open(inputFile, "r") as f1:
last_line = f1.readlines()[-1]

关于python - 打印用 Python 读入的文件的最后一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37227909/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com