编写程序project1.py实现在D盘下新建test1.txt文件,并向文件中写入你的班级和姓名。
时间: 2024-03-06 21:50:40 浏览: 61
好的,以下是程序project1.py的代码:
```python
import os
path = 'D:/test1.txt'
content = '班级:xxx;姓名:xxx' # 请将xxx替换为你的班级和姓名
if not os.path.exists(path):
with open(path, 'w', encoding='utf-8') as f:
f.write(content)
print('文件创建成功并写入内容!')
else:
print('文件已存在!')
```
你可以将代码保存为project1.py文件,然后在命令行窗口中运行这个程序,即可在D盘下创建test1.txt文件并写入内容。
阅读全文