[python] 请教保存文件时报错的问题 FileNotFoundError: [Errno 2] No such file or directory:

问题:

python 爬虫爬取网页资源,将爬取的歌曲保存至F:\SpiderData\music
[python] 请教保存文件时报错的问题 FileNotFoundError: [Errno 2] No such file or directory:_第1张图片
运行后,出现以下错误:报错的问题 FileNotFoundError: [Errno 2] No such file or directory:
[python] 请教保存文件时报错的问题 FileNotFoundError: [Errno 2] No such file or directory:_第2张图片

原因

一.pat1和pat2填反。本应pat1传给titlelist,pat2传给idlist.

[python] 请教保存文件时报错的问题 FileNotFoundError: [Errno 2] No such file or directory:_第3张图片
二.format(songname,“wb”)语法格式错误应为format(songname),“wb”
在这里插入图片描述

修正为

一.
[python] 请教保存文件时报错的问题 FileNotFoundError: [Errno 2] No such file or directory:_第4张图片
二.
在这里插入图片描述

总结

出现 **FileNotFoundError: [Errno 2] No such file or directory:**时,如果路径正确的情况下,可以考虑将前面的代码进行检查是否存在错误。

你可能感兴趣的:(Python爬虫)