21.Python:指定字符编码

2021-06-28 11:06

阅读:674


"""
控制文件读写内容的模式
t 文本
1.读写都是以str(unicode)为单位
2.文本文件
3.必须指定encoding=‘utf-8‘
"""

# 没有指定encoding参数操作系统会使用自己默认的编码

# with open(‘a.txt‘, mode=‘rt‘) as f1: # t模式会将f.read()读出的结果解码成Unicode
# res = f1.read()
# print(res, type(res))

with open(‘a.txt‘, mode=‘rt‘, encoding=‘utf-8‘) as f1: # t模式会将f.read()读出的结果解码成Unicode
res = f1.read()
print(res, type(res))


评论


亲,登录后才可以留言!