我正在尝试使用 python 从 html 代码中提取某些信息。例如:
<a href="#tips">Visit the Useful Tips Section</a>
and I would like to get result : Visit the Useful Tips Section
<div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;">
<b>Menu</b><br />
HTML<br />
CSS<br />
and I would like to get Menu HTML CSS
换句话说,我希望得到 <> 和 <> 之间的所有内容,我正在尝试编写一个 python 函数,将 html 代码作为字符串,然后从那里提取信息。我被困在 string.split('<') 上。