用Python1、创建文件,名称为“english_song”,将歌词按行输入 2、将文件重命名为“my heart will go on” 3、对文件创建副本为“back-up” 4、关闭文件
时间: 2024-01-22 18:20:02 浏览: 94
用Python批量重命名文件
5星 · 资源好评率100%
以下是Python代码实现:
```python
# 创建文件并按行输入歌词
with open('english_song', 'w') as f:
f.write("Near, far, wherever you are\n")
f.write("I believe that the heart does go on\n")
f.write("Once more, you open the door\n")
f.write("And you're here in my heart\n")
f.write("And my heart will go on and on\n")
# 将文件重命名
import os
os.rename('english_song', 'my heart will go on')
# 创建文件副本
import shutil
shutil.copyfile('my heart will go on', 'back-up')
# 关闭文件
f.close()
```
注意,在执行文件重命名和创建副本的操作前,需要确保文件已经被创建并且已被关闭,否则会报错。
阅读全文