创建文件,名称为“english_song”,将歌词按行输入,将文件重名名为“my heart will go on”对文件创建副本“back-up”关闭文件
时间: 2023-10-04 19:04:45 浏览: 33
下面是Python代码实现:
```python
# 打开文件english_song
with open("english_song.txt", mode="w") as file:
# 将歌词按行写入文件
file.write("Every night in my dreams\n")
file.write("I see you, I feel you\n")
file.write("That is how I know you go on\n")
file.write("Far across the distance\n")
file.write("And spaces between us\n")
file.write("You have come to show you go on\n")
file.write("Near, far, wherever you are\n")
file.write("I believe that the heart does go on\n")
file.write("Once more, you open the door\n")
file.write("And you're here in my heart\n")
file.write("And my heart will go on and on\n")
# 重命名文件
import os
os.rename("english_song.txt", "my heart will go on.txt")
# 创建文件副本
import shutil
shutil.copyfile("my heart will go on.txt", "back-up.txt")
# 关闭文件
file.close()
```
以上代码首先使用 `open()` 函数创建了一个名为 `english_song.txt` 的文件,并将歌词逐行写入该文件。然后使用 `os.rename()` 函数将文件名改为 `my heart will go on.txt`。接着使用 `shutil.copyfile()` 函数创建了一个名为 `back-up.txt` 的文件副本。最后使用 `close()` 方法关闭了文件。
阅读全文