已安装bs4和lxml库,但仍运行失败
已经导入了bs4库,也安装了lxml库,这是为何运行失败?
相关代码:
from bs4 import BeautifulSoup
html = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title" name="dromouse"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1"><!-- Elsie --></a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
#lxml提前安装好,pip install lxml
#第一个参数是html代码段,第二个参数是解析器
soup = BeautifulSoup(html,'lxml')
print(soup.prettify())
12
收起
正在回答 回答被采纳积分+1
1回答
慕粉0950063802
2021-01-06 15:55:37
手动导入了lxml包可以运行了
4.入门主流框架Scrapy与爬虫项目实战
- 参与学习 人
- 提交作业 107 份
- 解答问题 1672 个
Python最广为人知的应用就是爬虫了,有趣且酷的爬虫技能并没有那么遥远,本阶段带你学会利用主流Scrapy框架完成爬取招聘网站和二手车网站的项目实战。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星