编写程序,在D盘根目录下创建一个文本文件test.txt,并向其中写入字符串“hello world”。
时间: 2024-03-23 09:42:35 浏览: 33
编写 hello world web 程序
你可以使用Python的内置库`os`和`io`来实现这个任务。下面是一个例子:
```python
import os
# 定义文件路径
file_path = 'D:/test.txt'
# 判断文件是否存在,如果存在则删除
if os.path.exists(file_path):
os.remove(file_path)
# 创建文件并写入内容
with open(file_path, 'w') as f:
f.write('hello world')
```
以上代码中,首先判断文件是否存在,如果存在则删除。然后使用`open()`函数创建文件,并将`'hello world'`写入文件中。最后,使用`with`语句来自动关闭文件。
阅读全文