MOOC作业练习10

请完成以下文件综合编程迷你项目。
(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 win
(2) 在文件头部插入歌名“Blowin’ in the wind”
(3) 在歌名后插入歌手名“Bob Dylan”
(4) 在文件末尾加上字符串“1962 by Warner Bros. Inc.”
(5) 在屏幕上打印文件内容


def insert_line(lines):
    lines.insert(0,"Blowin'in the wind\n")
    lines.insert(1,"Bob Dylan\n")
    lines.append("\n1962 by Warner Bros.Inc")
    return "".join(lines)
with open('blowing in the wind.txt','r+') as f:
    lines = f.readlines()
    string=insert_line(lines)
    print(string)
    f.seek(0)
    f.write(string)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值