soup = BeautifulSoup(''.join(html))
table = soup.find("table")
firstRow = table.contents[0]
for tr in firstRow:
if 'Total' in tr:
text = ''.join(tr.find(text=True))
print(text)
有时表格元素包含文本链接而不是纯文本。在这种情况下,上面的 for 循环遍历所有单元格并且没有找到文本“Total”,因为它在里面
<a title="err">Total</a>
。如果有链接,如何修改循环以在链接中查找文本?