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
复制代码

 

posted @   小鲨鱼2018  阅读(1419)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
历史上的今天:
2021-01-03 c语言中switch语句
点击右上角即可分享
微信分享提示