从<li>中提取文字

时间:2016-12-27 16:24:56

标签: python beautifulsoup

我从博客中提取了文字,但采用以下格式:

我只需从中提取文字。

我试过这段代码:

IMqttActionListener

1 个答案:

答案 0 :(得分:0)

from bs4 import BeautifulSoup
t = '<li><b><a href = "www.google.com">Google</a></b></li>'

b = BeautifulSoup(t, "html.parser")
print b.text #--> Google