是的,Python 可以改变默认编码。在 Python 3 中,默认编码是 UTF-8。如果你需要使用其他编码,可以通过以下方法来改变默认编码:
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
注意:这种方法在 Python 3 中可能不起作用,因为 sys.setdefaultencoding()
函数在 Python 3 中已被移除。但是,你可以在读取和写入文件时显式指定编码。
open()
函数时,可以添加 encoding
参数:# 读取文件
with open('file.txt', 'r', encoding='utf-8') as f:
content = f.read()
# 写入文件
with open('file.txt', 'w', encoding='utf-8') as f:
f.write(content)
通过这种方式,你可以确保在读取和写入文件时使用特定的编码。