标签:python mod 自己 unicode coding 文件读写 with mode odi
"""
控制文件读写内容的模式
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))
标签:python mod 自己 unicode coding 文件读写 with mode odi
原文地址:https://www.cnblogs.com/wyless/p/14930410.html