1、创建文件,名称为“english_song.txt”,将歌词按行输入 2、将文件重命名为“my heart will go on.txt” 3、对文件创建副本为“back-up.txt” 4、关闭文件
时间: 2024-03-27 13:38:43 浏览: 30
english_quadgrams.txt
好的,下面是实现这些要求的代码:
```python
# 创建文件并写入歌词
with open("english_song.txt", "w") as f:
f.write("Every night in my dreams\n")
f.write("I see you, I feel you\n")
f.write("That is how I know you go on\n")
f.write("Far across the distance\n")
f.write("And spaces between us\n")
f.write("You have come to show you go on\n")
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.txt", "my heart will go on.txt")
# 创建副本
import shutil
shutil.copyfile("my heart will go on.txt", "back-up.txt")
# 关闭文件
f.close()
```
首先,使用 `with open("english_song.txt", "w") as f:` 创建文件并写入歌词。这里使用 `with` 语句可以自动关闭文件,避免了手动调用 `close()` 方法。
然后,使用 `os.rename()` 方法将文件重命名为 "my heart will go on.txt"。
接着,使用 `shutil.copyfile()` 方法创建副本文件 "back-up.txt"。
最后,调用 `close()` 方法关闭文件。
阅读全文