假设我有一个这样的 html 表:
<table>
<tr>
<tr>...
</tr>
<tr>...
</tr>
</tr>
<tr>
<tr>...
</tr>
<tr>...
</tr>
</tr>
...
</table>
我可以找到表格标签。我怎么能找到第一层表格行是儿子..而不是表格的孙子。
print table.findAll('tr') # would return All the trs under table which is not what I want.