python编写程序,创建一个文本文件test.txt,并向其中写入字符串hello world
时间: 2024-03-16 14:48:11 浏览: 77
编写 hello world web 程序
好的,以下是Python代码实现:
```
with open("test.txt", "w") as file:
file.write("hello world")
```
这段代码会在当前运行的目录下创建一个名为test.txt的文本文件,并将字符串"hello world"写入该文件中。
阅读全文