码迷,mamicode.com
首页 > 编程语言 > 详细

21.Python:指定字符编码

时间:2021-06-25 17:15:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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))

21.Python:指定字符编码

标签:python   mod   自己   unicode   coding   文件读写   with   mode   odi   

原文地址:https://www.cnblogs.com/wyless/p/14930410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!