python 读写文件

#coding=utf-8
poem='''\
Programming is fun
When the work is done
if you wanna make your work also fun:
        use Python!
'''

f=file('poem.txt','w')
f.write(poem)
f.close()

f=file('poem.txt')
while True:
    line=f.readline()
    if len(line)==0:
        break
    print line,
f.close()

 

posted @ 2013-09-22 09:56  yufenghou  阅读(167)  评论(0编辑  收藏  举报