python中打开指定路径d:盘下创建test.txt文本文件,读取并输出其内容。
时间: 2024-01-21 09:20:01 浏览: 300
Python文件操作(课件)
5星 · 资源好评率100%
你可以使用以下代码在 Python 中打开指定路径 D 盘下创建 test.txt 文本文件,并读取并输出其内容:
```python
# 打开文件并写入内容
with open("D:/test.txt", "w") as f:
f.write("Hello, World!")
# 读取文件内容并输出
with open("D:/test.txt", "r") as f:
content = f.read()
print(content)
```
这段代码首先使用 `with open("D:/test.txt", "w") as f` 打开文件并以写入模式写入内容,接着使用 `with open("D:/test.txt", "r") as f` 打开文件并以读取模式读取内容,最后使用 `print(content)` 输出文件内容。
阅读全文