标签: python beautifulsoup
我从博客中提取了文字,但采用以下格式:
我只需从中提取文字。
我试过这段代码:
IMqttActionListener
答案 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