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

Python文件处理

时间:2015-03-10 01:37:28      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:import   hello   二进制   write   world   

1、创建文件:

    f = file(‘myfile.txt‘,‘w‘)    #myfile 为文件名,w为写权限。

    f .write("hello world!")    #hello world! 为要写入的文件的内容。

    f.close()                            #文件打开后一定要记得关闭,因为当有其他程序再次打开该文件的时候会报错。

    文件的权限还有:

    w+

    r+

    a+

    wb,rb二进制形式读写文件

eg1:实时写入

import time

f = file("f_test.txt",‘w‘)

for i in range(15):

    time.sleep(1)    #休眠一秒

    f.write(‘The %s loops\n‘ % i)

    f.flush()        #没循环一次,讲内存中的数据写入到硬盘中。

time.sleep(10) #循环结束,休眠10秒

f.close()

 

 

Python文件处理

标签:import   hello   二进制   write   world   

原文地址:http://sailq21.blog.51cto.com/6111337/1618812

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