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

读取/写入文件

时间:2014-07-02 23:06:01      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:使用   strong   文件   os   for   line   

读取文件:

#直接读取

for line in open("d:\serverlist.txt"):
print(line)

 

#使用readline()方法读取

file = open(‘d:\serverlist.txt‘)
line = file.readline()
while line:
print(line,end=‘’)
file.close()

 

#使用read()方法读取

f = open("d:\out.txt",‘r‘)
mm=f.read()
f.close()
print(mm)

 

写入文件:

#新建或覆盖原文件写入
f = open("d:\out.txt", ‘w‘)
print("abc",file=f)
f.close()

 

#追加写入
f = open("d:\out.txt", ‘a‘)
print("abcdef",file=f)
f.close()

 

#使用write()方法写入
f = open("d:\out.txt",‘a‘)
f.write("\nnnnn")
f.close()

读取/写入文件,布布扣,bubuko.com

读取/写入文件

标签:使用   strong   文件   os   for   line   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3818734.html

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