码迷,mamicode.com
首页 > 编程语言 > 详细

python文件操作

时间:2017-10-28 00:30:42      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:etl   getline   模块   序列   特定   linecache   方法   写入内容   关闭   

 

codecs 模块: 处理文件操作过程中的乱码问题。

f=codecs.open(‘fxh.txt‘,‘r+‘)    #打开文件

打开的模式:

  r , w , a ,b , r+ , w+ ....

 

常用的方法:

read()   读取文件中内容

write()    写入内容,必须传入字符串

writeline()  写入内容,必须传入一个序列

next()    光标后的下一行

seek()   设置光标的位置

tell()  查看光标的位置

flush()   刷新到磁盘

name    文件名

closed  是否关闭,关闭则返回true

 

使用with 打开文件:(使用with打开的文件不用自己手动关闭)

eg:打印文件的特定行。

with codecs.open(‘fxh.txt‘,‘r+‘) as fd:
#text=fd.read()
for line,value in enumerate(fd):
if line == 2-1:
print(value)
上面的实现也可以使用一个模块来实现:
import linecache
test=linecache.getline(‘fxh.txt‘,2)
print(test)

 

python文件操作

标签:etl   getline   模块   序列   特定   linecache   方法   写入内容   关闭   

原文地址:http://www.cnblogs.com/fanxuanhui-linux/p/7745672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!