我正在尝试使用 BeautifulSoup 来获取 HTML<div>
标签列表,然后检查它们是否具有 name 属性,然后返回该属性值。请看我的代码:
soup = BeautifulSoup(html) #assume html contains <div> tags with a name attribute
nameTags = soup.findAll('name')
for n in nameTags:
if n.has_key('name'):
#get the value of the name attribute
我的问题是如何获取 name 属性的值?