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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM