码迷,mamicode.com
首页 > 其他好文 > 详细

文件的基本操作

时间:2016-12-13 00:19:47      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:文件的基本操作

文件的打开模式:

r 以只读方式打开文件

w 打开一个文件只用于写入

a 打开一个文件用于追加,如果该过文件已存在,文件指针会放在文件的结尾,如果该文件不存在,创建新文件进行写入

w+ 打开一个文件用于读写,如果该文件已存在则将其覆盖,如果该文件不存在,创建新文件


读取文件的内容:

#一次性加载所有内容到内存

obj.read()

#一次性加载所有内容到内存,并根据行分隔成字符串

obj.readlines()

#每次仅读取一行数据

for line in obj:

  print(line)


写文件的内容

obj.write(‘内容‘)


关闭文件句柄:

obj.close()


举例说明(创建一个文件,读一个文件)

创建一个文件:

f=open("test.log","r")

   for line in f:

    print(line),

f.close()


往文件里写内容:    

f = open("test.log","w")

f.write("this is the first line\n")

f.write("this is the second line\n")

f.write("this is the 3 line\n")

f.write("this is the 4 line\n")

f.close()


往文件追加内容:

f = open("test.log","a")

f.write("this is 6 line\n")

f.close()





文件的基本操作

标签:文件的基本操作

原文地址:http://11273036.blog.51cto.com/11263036/1881995

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