虽然是个小问题,但是纠结我好长时间,找了就此记录一下。

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
文章2

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐