#coding=utf8 f = open(‘f:\xusj.txt‘,‘w‘) #打开xusj.txt,并写入文件 f.write(‘hello,‘) #写入字符串 f.write(‘i play python!‘) #继续追加写入字符串 f.close #关闭字符串 f = open(‘f:\xusj.txt‘,‘r‘) #读取文件内容 c = f.readline() #逐行读取 print c #测试重新对文件进行写入,发现文件是把之前的内容覆盖了,而不是追加。 f = open(‘f:\xusj.txt‘,‘w‘) f.write(‘hello twice,‘) f.write(‘I am coming agin.‘) f.close
本文出自 “少犟” 博客,请务必保留此出处http://xushaojie.blog.51cto.com/6205370/1768159
原文地址:http://xushaojie.blog.51cto.com/6205370/1768159