请新建一个文本文件hello_world.txt,写入五行“hello,world!:i”, i从0到到4
时间: 2023-11-09 08:07:54 浏览: 344
作业16作业要求:创建ctest.txt文件并在其中输入helloworld
5星 · 资源好评率100%
好的,以下是创建并写入文件的Python代码:
```python
with open('hello_world.txt', 'w') as f:
for i in range(5):
f.write(f'hello, world!: {i}\n')
```
这段代码会在当前工作目录下创建一个名为`hello_world.txt`的文件,并将五行文本写入其中,每行文本都包含一个数字`i`。你可以打开这个文件来查看写入的内容。
阅读全文