python1、创建文件,名称为“english_song.txt”,将歌词按行输入 2、将文件重命名为“my heart will go on.txt” 3、对文件创建副本为“back-up.txt” 4、关闭文件
时间: 2024-03-26 13:35:23 浏览: 54
下面是你所需要的Python代码:
```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")
# 重命名文件
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()
```
以上代码中,使用了Python内置的`open()`函数来创建并写入文件,然后使用`os.rename()`函数重命名文件,`shutil.copyfile()`函数创建文件副本,最后使用`close()`方法关闭文件。
阅读全文