python中如何将打印出来文本文件存在桌面上
时间: 2024-02-22 19:58:33 浏览: 181
python如何保存文本文件
5星 · 资源好评率100%
你可以使用Python的文件操作模块来创建并写入文本文件,然后使用操作系统模块将文件复制到桌面上。
以下是示例代码:
```python
import os
import shutil
# 创建并写入文本文件
with open('example.txt', 'w') as file:
file.write('Hello, world!')
# 将文件复制到桌面
desktop_path = os.path.join(os.path.expanduser("~"), "Desktop")
shutil.copy('example.txt', desktop_path)
```
这段代码首先创建了一个名为`example.txt`的文本文件,并向其中写入了一行文本。然后,使用`os.path.join()`函数和`os.path.expanduser()`函数来获取桌面路径。最后,使用`shutil.copy()`函数将文件复制到桌面上。
阅读全文