# xml = BeautifulSoup('<a href="/2022/03/03/97570718.html" title="文件操作与多线程"></a>','html.parser')
# print(xml.a.attrs['title'])
list = bs.find_all('img') #使用bs的遍历功能进行标签的遍历 list = bs.find_all(['a','img']) #一次性查找多个标签 list = bs.find_all(class_ = 'article-title') #直接属性定位标签、返回的就是含有这个特定属性的标签、并将整个标签的内容输出 list = bs.find_all(['post-meta-date-created',"article-title"]) #一次性使用多个属性去定位属性所在的标签 list = bs.find_all(href = re.compile('/2022/03/03/')) #通过正则来搜索标签(这个意思是搜索所有href属性里带有/2022/03/03/的关键字的标签)需要使用到re库 list = bs.find_all("a",class_='article-title') #查找所有a标签里面class属性为article-title的标签
for i inlist: #print(i) #打印所有的a标签 print(i.string) #打印标签里面的字符串 #print(i.attrs['title']) #打印这个标签内的title属性的内容