来自以下html
html='<tr><th scope="row">Born</th><td><span style="display:none"> (<span class="bday">1994-01-28</span>) </span>28 January 1994<span class="noprint ForceAgeToShow"> (age 23)</span><sup class="reference" id="cite_ref-buenamusica_1-0"><a href="#cite_note-buenamusica-1">[1]</a></sup><br/><a href="/wiki/Medell%C3%ADn" title="Medellín">Medellín</a>, <a href="/wiki/Colombia" title="Colombia">Colombia</a></td></tr>'
我想得到
['Medellin','Colombia']
到目前为止,我有以下代码
soup3=BeautifulSoup(html,'html.parser')
spans=soup3.findAll('tr')
[el.text for el in soup3.find_all('a')]
哪个产生
['[1]', 'Medellín', 'Colombia']
然而第一项也是sup class,我不想要它。
你能提供线索吗?
我不想引用列表的第2和第3个位置,因为如果其他htmls没有第1个位置,我就不会这样做([1] 0
答案 0 :(得分:1)
对于这种代码模式:
<tr>
<th scope="row">Born</th>
<td>
<span style="display:none"> (<span class="bday">1994-01-28</span>) </span>
28 January 1994
<span class="noprint ForceAgeToShow"> (age 23)</span>
<sup class="reference" id="cite_ref-buenamusica_1-0">
<a href="#cite_note-buenamusica-1">[1]</a>
</sup>
<br/>
<a href="/wiki/Medell%C3%ADn" title="Medellín">Medellín</a>,
<a href="/wiki/Colombia" title="Colombia">Colombia</a>
</td>
</tr>
您可以尝试使用更具体的选择器,例如:
soup3=BeautifulSoup(html,'html.parser')
spans=soup3.select('tr>td>a')
[el.text for el in spans]
或
soup3=BeautifulSoup(html,'html.parser')
spans=soup3.select('tr')
[el.text for el in spans.find_all('td>a')]
答案 1 :(得分:0)
您感兴趣的信息似乎也出现在title
属性中。您可以尝试而不是text
,并丢弃None
的条目。
from bs4 import BeautifulSoup
html='<tr><th scope="row">Born</th><td><span style="display:none"> (<span class="bday">1994-01-28</span>) </span>28 January 1994<span class="noprint ForceAgeToShow"> (age 23)</span><sup class="reference" id="cite_ref-buenamusica_1-0"><a href="#cite_note-buenamusica-1">[1]</a></sup><br/><a href="/wiki/Medell%C3%ADn" title="Medellín">Medellín</a>, <a href="/wiki/Colombia" title="Colombia">Colombia</a></td></tr>'
soup3=BeautifulSoup(html,'html.parser')
spans=soup3.findAll('tr')
[el.get('title') for el in soup3.find_all('a') if el.get('title') is not None]
# ['Medellín', 'Colombia']