我正试图抓住这个页面:http://sports.williamhill.com/bet/en-gb/results///E/10337992/today//////+England+v+Ukraine.html
我正在使用Python 3中的请求和BeautifulSoup。我特意尝试提取“#(绘图)(13/5)'在标签内。我试图用很多不同的方式使用BeautifulSoup导航到那个地方,就像BS4不能看到'它... 当我搜索所有内部时,它只给我第一行。
<tbody>
<tr>
<th width="41%" scope="col">Market</th>
<th width="3%"></th>
<th width="45%" scope="col">Result</th>
<th width="10%" scope="col" style="text-align: center">Settled</th>
</tr>
<tr class="rowGroup top bottom">
<td style="padding-top: 0pt;" class="borderBottom" rowspan="1">Match Betting</td>
<td>
</td>
<td>
Draw (13/5)
</td>
<td style="padding-top: 0pt; text-align: center" class="borderBottom" rowspan="1">Y</td>
</tr>
如何使用BeautifulSoup最好地检索该信息?先谢谢你。