哪有什么岁月静好,不过是有人替你负重前行!

python用open方式打开的txt文件乱码问题

txt文件内容:就两个字----学习

f = open('date.txt','r')
h = f.read()
print(h)

  执行结果为:

 

修改后的代码为:

f = open('date.txt','r',encoding='utf-8')
h = f.read()
print(h)

  执行后的结果为:

 

 这下正常。

 

posted @ 2021-09-26 10:53  longfei825  阅读(372)  评论(0编辑  收藏  举报