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()



你可能感兴趣的:(编程基础)