python 创建文件 with
时间: 2023-11-22 14:49:41 浏览: 90
Python创建文件夹与文件的快捷方法
5星 · 资源好评率100%
以下是Python创建文件的示例代码:
```python
# 导入datetime库
import datetime
# 获取当前日期
date = str(datetime.date.today())
# 在当前文件夹下创建文件
with open('example.txt', 'w', encoding='utf-8') as f:
f.write('Hello, world!')
# 在指定文件夹下创建文件
with open('C:\\Users\\username\\Documents\\example.txt', 'w', encoding='utf-8') as f:
f.write('Hello, world!')
# 在当前文件夹下以当前日期命名创建文件
with open('1.创建文件-{}.txt'.format(date), 'w', encoding='utf-8') as f:
f.write('Hello, world!')
```
以上代码中,第一个`with`语句在当前文件夹下创建了一个名为`example.txt`的文件,并向其中写入了`Hello, world!`。第二个`with`语句在指定文件夹下创建了一个名为`example.txt`的文件,并向其中写入了`Hello, world!`。第三个`with`语句在当前文件夹下以当前日期命名创建了一个文件,并向其中写入了`Hello, world!`。
阅读全文