利用bs解析了一个网页,解析出了符合条件的div
soup = BeautifulSoup(html, 'html.parser')
dtInfo = soup.find('div', attrs={'class': 'col-sm-9'})
names = dtInfo.find_all('div', attrs={'class': 'random_title'})
解析结果如下:
<div class="random_title">大哥,抽烟吗? <div class="date">2017-10-05</div></div>
但是在使用text获取文本的时候 发现日期文本也在其中。有没有方法可以直接提取到div class=random_title中的文字呢?
找到答案了 如果有多个标签的话 可以使用contents[index]获取指定索引的内容 ^_^