手机
当前位置:查字典教程网 >脚本专栏 >python >Python按行读取文件的实现方法【小文件和大文件读取】
Python按行读取文件的实现方法【小文件和大文件读取】
摘要:本文实例讲述了Python按行读取文件的实现方法。分享给大家供大家参考,具体如下:小文件:#coding=utf-8#author:walk...

本文实例讲述了Python按行读取文件的实现方法。分享给大家供大家参考,具体如下:

小文件:

#coding=utf-8 #author: walker #date: 2013-12-30 #function: 按行读取小文件 all_lines = [] try: file = open('txt.txt', 'r') all_lines = file.readlines() except IOError as err: print('File error: ' + str(err)) finally: if 'file' in locals(): file.close() for line in all_lines: print(line)

大文件:

#coding=utf-8 #author: walker #date: 2013-12-30 #function: 按行读取大文件 try: file = open('txt.txt', 'r') for line in file: print(line) except IOError as err: print('File error: ' + str(err)) finally: if 'file' in locals(): file.close()

希望本文所述对大家Python程序设计有所帮助。

【Python按行读取文件的实现方法【小文件和大文件读取】】相关文章:

python 文件与目录操作

python列表去重的二种方法

Python文件夹与文件的操作实现代码

python判断windows隐藏文件的方法

Python BeautifulSoup中文乱码问题的2种解决方法

python读取浮点数和读取文本文件示例

python逐行读取文件内容的三种方法

python 不关闭控制台的实现方法

Python的一些用法分享

python读写文件操作示例程序

精品推荐
分类导航