python中如何提取文件的前几行

2022/1/3 1:07:17

本文主要是介绍python中如何提取文件的前几行,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、测试数据及脚本

root@DESKTOP-1N42TVH:/home/test# ls
test.py  test.txt
root@DESKTOP-1N42TVH:/home/test# cat test.txt
a 3 d
s 1 j
z c m
q e i
3 4 k
h f 3
root@DESKTOP-1N42TVH:/home/test# cat test.py
fp=open("test.txt","r")

file=open("result.txt","w")

for i in range(3):               ## 提取前三行
    file.write(fp.readline().strip())
    file.write("\n")

fp.close()
file.close()
root@DESKTOP-1N42TVH:/home/test# python3 test.py
root@DESKTOP-1N42TVH:/home/test# ls
result.txt  test.py  test.txt
root@DESKTOP-1N42TVH:/home/test# cat result.txt   ## 查看结果
a 3 d
s 1 j
z c m

 



这篇关于python中如何提取文件的前几行的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程