python库bs4 BeautifulSoup获取标签属性的内容

python库bs4 BeautifulSoup获取标签属性的内容

        • 比如我想获取a标签的属性值内容:

比如我想获取a标签的属性值内容:

/a>

html = '/a>'
soup = BeautifulSoup(html, 'html.parser')
print(soup.select("a")[0]['title'])

结果

 数据分析从入门到进阶

你可能感兴趣的:(python,big,data,爬虫)