python读取文件的前几行

文件内容rolling.txt:

There‘s a fire starting in my heart
我怒火中烧
Reaching a fever pitch and it‘s bringing me out the dark
熊熊烈焰带我走出黑暗
Finally, I can see you crystal clear
最终 我将你看得一清二楚
Go ahead and sell me out and I‘ll lay your ship bare
去吧 出卖我 我会让你一无全部
See how I‘ll leave with every piece of you
看我怎么离你而去 带走你的一切
Don‘t underestimate the things that I will do
不要低估我将来的所作所为
There‘s a fire starting in my heart
我怒火中烧
Reaching a fever pitch and it‘s bring me out the dark
熊熊烈焰带我走出黑暗
The scars of your love remind me of us
你的爱情伤痕让我想起了我们曾经的甜蜜
They keep me thinking that we almost had it all
它们总在提醒我 我们几乎拥有了一切
The scars of your love, they leave me breathless
你的爱情伤痕 让我窒息
I can‘t help feeling
我不禁心生感触
We could have had it all
我们本该拥有一切
(You‘re gonna wish you never had met me)
(你会祈祷 要是从未遇见我该有多好)
Rolling in the deep
内心深处爱恨交织
(Tears are gonna fall, rolling in the deep)
(眼泪快要掉下来,内心深处爱恨交织)
You had my heart inside your hand
你俘虏了我的芳心
(You‘re gonna wish you never had met me)
(你会祈祷 要是从未遇见我该有多好)
And you played it to the beat
但是你玩弄它 伴着每一次心跳
(Tears are gonna fall, rolling in the deep)
(眼泪快要掉下来,内心深处爱恨交织)
Baby, I have no story to be told
宝贝 我没有故事可讲
But I‘ve heard one on you and I‘m gonna make your head burn
但是我听说了一件有关你的事情 我会让你焦头烂额
Think of me in the depths of your despair
在绝望的深渊中想起我
Making a home down there as mine sure won‘t be shared
就在那里安家吧 因为我的家园绝对没你的份
The scars of your love remind me of us
你的爱情伤痕让我想起了我们曾经的甜蜜
(You‘re gonna wish you never had met me)
(你会祈祷 要是从未遇见我该有多好)
They keep me thinking that we almost had it all
它们总在提醒我 我们几乎拥有了一切

一行行的读取文件前5行

第一种方法:

 for i in range(5):
     print(f.readline().strip())

第二种方法:

line_nu = 0#计数器
for line in f:#一行行的把数据从硬盘加载到内存里读出来
    if line_nu<5:#读取前五行
        print(line.strip())
        line_nu += 1
    else:
        break

最简单的两种方法。

时间: 2025-01-14 00:46:45

python读取文件的前几行的相关文章

Python读取文件

1.在Python中如何操作文件 2.如何读取大文件 文件内建函数:open(file_name,access_mode='r',buffering=-1),file() 文件访问模式:     r:以读方式打开(默认)     w:写     a:追加     b:以二进制方式打开     r+ w+ a+:读写方式打开     rb:以二进制读模式打开     wb:以二进制写模式打开     ab:以二进制追加模式打开 输入,输出 read() 读取给定数目个字节 readline() 读

python读取文件小结

python读取文件小结 你想通过python从文件中读取文本或数据. 一.最方便的方法是一次性读取文件中的所有内容并放置到一个大字符串中: all_the_text = open('thefile.txt').read( )     # 文本文件中的所有文本 all_the_data = open('abinfile','rb').read( )    # 二进制文件中的所有数据 为了安全起见,最好还是给打开的文件对象指定一个名字,这样在完成操作之后可以迅速关闭文件,防止一些无用的文件对象占用

Python读取文件的最后一行(非空行)

利用Python读取文件(针对大文件和小文件两种)的首行(第一行)和末行(最后一行).脚本借鉴了前人的两种处理思路(在下面的脚本中有注释说明引用出处),并修正了原先两种处理方法中如果文件末尾含有多个空行而返回空行的问题. 脚本内容可以从GitHub上获取: https://github.com/DingGuodong/LinuxBashShellScriptForOps/blob/master/functions/file/getFileLastLine.py 脚本内容如下: #!/usr/bi

解决Python读取文件时出现UnicodeDecodeError: &#39;gbk&#39; codec can&#39;t decode byte...

用Python在读取某个html文件时会遇到下面问题: 出问题的代码: 1 if __name__ == '__main__': 2 fileHandler = open('../report.html', mode='r') 3 4 report_lines = fileHandler.readlines() 5 for line in report_lines: 6 print(line.rstrip()) 修改方式是在open方法指定参数encoding='UTF-8': if __nam

python 读取文件时报错UnicodeDecodeError: &#39;gbk&#39; codec can&#39;t decode byte 0x80 in position 205: illegal multibyte sequence

python读写txt文件转化成excel文件 python读取文件时提示"UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 205: illegal multibyte sequence" 解决办法1. FILE_OBJECT= open('order.log','r', encoding='UTF-8') 解决办法2. FILE_OBJECT= open('order.log','rb') pyth

?快速删除大文件的前几行或后几行及快速获取大文件的n到m行数据

快速删除大文件的前几行或后几行 http://stackoverflow.com/questions/17330188/remove-first-n-lines-of-a-file-in-place-in-unix-command-line 快速获取大文件的n到m行数据 http://unix.stackexchange.com/questions/47407/cat-line-x-to-line-y-on-a-huge-file

python 读取文件时报错: UnicodeDecodeError: &#39;gbk&#39; codec can&#39;t decode byte 0xa4 in position 127: illegal multibyte sequence

UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 127: illegal multibyte sequence python读取文件时提示UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 127: illegal multibyte sequence 解决办法: FILE_OBJECT= open('order.log','r'

【Python】python读取文件操作mysql

尾大不掉,前阵子做检索测试时,总是因为需要业务端操作db和一些其他服务,这就使得检索测试对环境和数据依赖性特别高,极大提高了测试成本. Mock服务和mysql可以很好的解决这个问题,所以那阵子做了两个工作: 1 使用公司的service框架Mock服务: 2 使用python语言Mock mysql数据. 部分1只需要了解公司框架即可进行编写,本文主要记录下python操作mysql的部分. 一 安装环境 安装python即需要的MySQLdb模块(yum install MySQL-pyth

python读取文件,如何去掉每一行末尾的换行符"\n"

参考文档:http://blog.csdn.net/jfkidear/article/details/7532293 #!/usr/bin/python # coding:utf-8 # 文件操作 with open('~/refer.txt', 'r') as f: print('文件正常打开,正在开始操作文件') for line in f.readlines(): # python按行读取文件,如何去掉换行符"\n" print line.strip('\n')