python 文件简单操作

利用python进行数据分析week2 测试

请完成以下文件综合编程迷你项目(提示:可以利用list的insert函数)。

(1) 创建一个文件Blowing in the wind.txt,其内容是:

How many roads must a man walk down

Before they call him a man

How many seas must a white dove sail

Before she sleeps in the sand

How many times must the cannon balls fly

Before they're forever banned

The answer my friend is blowing in the wind

The answer is blowing in the wind

(2) 在文件头部插入歌名“Blowin’ in the wind”

(3) 在歌名后插入歌手名“Bob Dylan”

(4) 在文件末尾加上字符串“1962 by Warner Bros. Inc.”

(5) 在屏幕上打印文件内容

实现方法

# -*- coding: utf-8 -*-

text='''

How many roads must a man walk down


Before they call him a man


How many seas must a white dove sail


Before she sleeps in the sand


How many times must the cannon balls fly


Before they're forever banned


The answer my friend is blowing in the wind


The answer is blowing in the wind

'''

f=open('Blowing in the wind.txt','w')

f.seek(0)

for line in text:

#

f.writelines(line)

f.close



f=open('Blowing in the wind.txt','r+')

m=[]

i=0

for line in f.readlines():

i+=1

m.insert(i,line)

f.close


m.insert(0,'Blowin’ in the wind')

m.insert(1,'\n')


m.insert(2,'Bob Dylan\n')

m.insert(len(m),'1962 by Warner Bros. Inc.')


f2=open('Blowing in the wind.txt','w+')

f2.seek(0)

for line in m:

f2.writelines(line)

f2.close


f3=open('Blowing in the wind.txt','r')

print f3.read()



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值