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

一个简单的文件操作练习

时间:2016-10-02 17:06:22      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

首先你需要在当前目录下穿件一个Blowing in the wind.txt文件,内容自定

我们我们需要在行首插入两句话,并且在行尾插入一句话,内容随意

实现代码如下:

 1 #!/usr/bin/python
 2 # -*- coding: utf-8 -*-
 3 
 4 #打开已有文件,以读写模式打开
 5 with open(Blowing in the wind.txt,r+) as f:
 6     lst_r = f.readlines()
 7 
 8 #分别插入
 9 lst_r.insert(0,Blowin \‘in the wind\r\n\r\n)    
10 lst_r.insert(1,Bob Dylan)
11 lst_r.insert(len(lst_r),\r\n\r\n1962 by Warner Bros. Inc.)
12 
13 #写入新文件
14 with open(Blowing in the wind_2.txt,w+) as f2:
15     for i in lst_r:
16         f2.write(i)
17         

 

一个简单的文件操作练习

标签:

原文地址:http://www.cnblogs.com/fuzzier/p/5927592.html

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