用python新建一个文本文件hello_world.txt,写入五行“hello,world!:1-5”
时间: 2023-10-23 14:11:32 浏览: 81
python基础教程之Hello World!
5星 · 资源好评率100%
可以使用以下代码实现:
```python
with open('hello_world.txt', 'w') as f:
for i in range(1, 6):
f.write(f'hello, world!: {i}\n')
```
这段代码会在当前目录下创建一个名为`hello_world.txt`的文本文件,并写入五行内容,每行内容为`hello, world!: i`,其中`i`为1到5的整数。每行内容最后还会加上一个换行符`\n`。
阅读全文