用漂亮的汤汁从html代码中提取表格

时间:2019-06-28 14:07:15

标签: python xpath beautifulsoup

我的html如下:

<table class="tbOdpis" width="100%" cellspacing="0">
  <tbody>
    <tr>
      <td class="csEmptyLine" colspan="100" width="100%"></td>
    </tr>
    <tr>
      <td class="csTTytul" colspan="100" width="100%">OZNACZENIE KSIĘGI WIECZYSTEJ</td>
    </tr>
  </tbody>
</table>

我尝试使用以下代码提取该表:

soup.findAll('table')[1]

除了我只收到这个以外,一切都还可以:

<table cellspacing="0" class="tbOdpis" width="100%">
  <td class="csEmptyLine" colspan="100" width="100%"></td>
</table>

第二行为什么消失了?

0 个答案:

没有答案