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读写文件的主要内容,如果未能解决你的问题,请参考以下文章

python读写文件

Python代码中打开txt文件(非读写)

python常用代码片段总结

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?

常用python日期日志获取内容循环的代码片段

Python文件读写