Python - 使用BeautifulSoup解析特定标记

时间:2016-05-26 13:22:22

标签: python beautifulsoup

我试图解析" helloworld"来自下面的html标签:

<td bgcolor="#000000" style="width:100px;">helloworld</td>

到目前为止,这是我的代码:

from BeautifulSoup import BeautifulSoup
text = '<td bgcolor="#000000" style="width:100px;">helloworld</td>'
soup = BeautifulSoup(text)
soup.findAll('td', style="width:100px")
print soup

但是这只是再次打印标签,我该如何解决呢?

感谢。

0 个答案:

没有答案