python 请新建一个文本文件hello_world.txt,写入五行“hello,world!:i”, i从0到4。
时间: 2023-11-09 20:04:36 浏览: 90
python-hello-world
可以使用以下代码实现:
```
with open("hello_world.txt", "w") as f:
for i in range(5):
f.write("hello, world!: {}\n".format(i))
```
这里使用了Python中的文件操作,首先打开一个名为"hello_world.txt"的文件并以写模式("w")打开它。然后使用一个for循环写入五行文本,每行文本都包含“hello,world!:i”,其中i的值从0到4。最后,使用文件对象的close()方法关闭文件。
阅读全文