python的open encoding
时间: 2024-05-13 17:09:29 浏览: 112
探究python中open函数的使用
在Python中,open()函数用于打开文件,并返回一个文件对象。open()函数有一个可选参数encoding,用于指定文件的编码格式。如果不指定encoding参数,则默认使用操作系统的默认编码格式。
例如,要以UTF-8编码格式打开一个文件,可以使用以下代码:
```
with open('file.txt', 'r', encoding='utf-8') as f:
# do something with the file
```
阅读全文