1、创建文件,名称为“english_song.txt”,将歌词按行输入 2、将文件重命名为“my heart will go on.txt” 3、对文件创建副本为“back-up.txt” 4、关闭文件
时间: 2024-02-24 08:53:11 浏览: 54
以下是 Python 代码实现:
```python
# 创建文件并写入歌词
with open("english_song.txt", "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")
# 将文件重命名为“my heart will go on.txt”
import os
os.rename("english_song.txt", "my heart will go on.txt")
# 对文件创建副本为“back-up.txt”
import shutil
shutil.copy("my heart will go on.txt", "back-up.txt")
# 关闭文件
f.close()
```
首先,使用 `with open("english_song.txt", "w") as f` 创建文件,并写入歌词。接着,使用 `os.rename()` 将文件重命名为 “my heart will go on.txt”。然后,使用 `shutil.copy()` 对文件创建副本为 “back-up.txt”。最后,使用 `f.close()` 关闭文件。
阅读全文