Python创建文件
时间: 2023-12-14 21:33:25 浏览: 81
基于JAVA+SpringBoot+MySQL的校园台球厅人员与设备管理系统设计与实现.docx
以下是Python创建文件的两种方法:
1. 使用open()函数创建文件并写入内容
```python
# 打开文件,如果文件不存在则创建
file = open('homework.txt', mode='w', encoding='utf8')
# 写入内容
file.write('python is the best\n')
# 关闭文件
file.close()
```
2. 使用with语句创建文件并写入内容
```python
# 使用with语句打开文件,如果文件不存在则创建
with open('homework.txt', mode='w', encoding='utf8') as file:
# 写入内容
file.write('python is the best\n')
```
阅读全文