(3种解决思路)OSError: [Errno 22] Invalid argument:解决python爬虫中报错
虽然是个小问题,但是纠结我好长时间,找了就此记录一下。
·
虽然是个小问题,但是纠结我好长时间,找了就此记录一下。
1.路径问题
更改为:
with open('./file/hi.txt','r','encoding='utf-8'')
或
with open('.//file//hi.txt','r','encoding='utf-8'')
或
with open('.\\file\\hi.txt','r','encoding='utf-8'')
或
with open('.\file/hi.txt','r','encoding='utf-8'')
2. 爬虫过程中文件命名中含有敏感字符
文件名不能包含下列任何字符:\ / : * ? " < > |
所以要增添方法给它替换或者去掉
character = '\/:*?"<>|'
-----------------
for s in character:
if s in title:
title = title.replace(s, ' ')
3.读取路径前加上r,防止读取过程中错读
with open(r'.\file/hi.txt','r','encoding='utf-8'')
更多推荐
已为社区贡献1条内容
所有评论(0)