标签:创建 open int style pytho 方法 获取 遍历 大文件
f = file(name, mode, [buffering])
入口参数:
返回值 :
mode 选项:
高效读取文件的方法,是利用循环遍历读取文件的行:
f = open(‘file.txt‘)
for line in f:
print line # line是每行文件的内容,读完一行,就会释放一行的内存
使用with结构:
文件操作结束后需要关闭文件释放系统资源,但关闭文件常常会被忘记,使用with方法后文件会被自动关闭。
#打开一个文件,把这个文件的句柄付给f
with open(‘file.txt‘,‘r‘) as f:
for line in f:
print line
标签:创建 open int style pytho 方法 获取 遍历 大文件
原文地址:https://www.cnblogs.com/sunshine-blog/p/9497317.html