首页 > 编程语言 > 详细

python 读取大文件

时间:2017-07-25 17:57:08      阅读:261      评论:0      收藏:0      [点我收藏+]

要读取个大文件,文件大概是3G左右,担心read会出现内存溢出的情况,网上找了个靠谱的用法:

with open(...) as f:
    for line in f:
        <do something with line>

The with statement handles opening and closing the file, including if an exception is raised in the inner block. The for line in f treats the file object f as an iterable, which automatically uses buffered IO and memory management so you don‘t have to worry about large files.

There should be one -- and preferably only one -- obvious way to do it.

python 读取大文件

原文:http://www.cnblogs.com/dpains/p/7235430.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!