python 爬蛇报错?
反馈:Traceback(mostrecentcalllast):File"<input>",line1,in<module>File"F:\PyCharm2019.3....
反馈:Traceback (most recent call last): File "<input>", line 1, in <module> File "F:\PyCharm 2019.3.3\plugins\python\helpers\pydev\_pydev_bundle\pydev_umd.py", line 197, in runfile pydev_imports.execfile(filename, global_vars, local_vars) # execute the script File "F:\PyCharm 2019.3.3\plugins\python\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile exec(compile(contents+"\n", file, 'exec'), glob, loc) File "C:/Users/ZJQ21/pashe.py", line 7, in <module> title=re.findall(r'<meta property="og:title" content="(.*?)"/>',html)[0]IndexError: list index out of range代码import requestsimport reurl="http://www.31xiaoshuo.org/8/8008/"rsponse=requests.get(url)rsponse.encoding="gbk"html=rsponse.texttitle=re.findall(r'<meta property="og:title" content="(.*?)"/>',html)[0]dl=re.findall(r'<div id="list">.*?</dl>',html,re.S)[0]chapter_info_list=re.findall(r'href="(.*?)">(.*?)<',dl)print(title)
展开
4个回答
展开全部
python 是一种编程语言,python英文原意是蟒蛇的意思,说它是爬虫是不对的,但它可以做爬虫程序。爬虫是爬取互联网上的信息的一种程序。
当然 python 也不只是只能爬虫程序,其他方面也是可以做的,像人工智能,大数据分析都是python 的方向。
当然 python 也不只是只能爬虫程序,其他方面也是可以做的,像人工智能,大数据分析都是python 的方向。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那一行正则表达式查找结果为空([]),所以写[0]报错
解决方案:
1.print(html)
先看看这个网页的内容有没有符合正则表达式
2.看一看正则表达式写对没
解决方案:
1.print(html)
先看看这个网页的内容有没有符合正则表达式
2.看一看正则表达式写对没
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2020-02-24
展开全部
title的那个正则没获取到数据,导致数组越限
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
加个if判断
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询