python什么内置函数用来打开或创建文件并返回文件对象
时间: 2024-05-04 07:21:42 浏览: 85
python内置函数
Python中使用`open()`函数来打开或创建文件并返回文件对象。`open()`函数的语法如下:
```python
open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
```
其中,`file`参数表示文件名(包括路径),`mode`参数表示打开文件的模式(默认为只读模式 `'r'`),`encoding`参数表示文件的编码方式(默认为 `None`,表示使用系统默认编码方式)。`open()`函数会返回一个文件对象,可以通过该对象进行文件读写操作。例如:
```python
# 打开文件并读取内容
f = open('example.txt', 'r')
content = f.read()
print(content)
f.close()
# 打开文件并写入内容
f = open('example.txt', 'w')
f.write('Hello, world!')
f.close()
```
阅读全文