【发布时间】:2018-09-12 10:58:55
【问题描述】:
我正在尝试用漂亮的汤 4 解析一个 html,但无法获取数据
<div class="inside">
<a href="http://www.linkar.com">
<b>A Show</b><br/>
<img alt="A Show" height="83" src="http://www.linkar.com/679.jpg"/>
</a>
<br/>Film : Gladiator
<br/>Location : example street, London, UK
<br/>Phone : +83817447184<br/>
</div>
我可以通过使用得到字符串“A Show”
soup = BeautifulSoup(html, "html.parser")
a_show = soup.find('b').get_text()
如何分别获取字符串 Film、Location 和 Phone 的值?
【问题讨论】:
标签: python beautifulsoup html-parsing