python读写文件
Posted 穷酸秀才大艹包
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读写文件相关的知识,希望对你有一定的参考价值。
f = open("./data/test.txt","r") lines = f.readlines() for line in lines: print(line)
UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xa6 in position 2729: illegal multibyte sequence 解决方案:
f = open("./data/happy.txt", "r", encoding=‘utf-8‘)
以上是关于python读写文件的主要内容,如果未能解决你的问题,请参考以下文章