最新回答 / 余焕生
你使用的是 pycharm 吧,在 pycharm 的 File>Settings>Project>Project Interpreter 里选择你安装有 bs4 的python版本看看行不行
2018-11-07
用python3的话,最后一句改为link.name,link.get('href'),link.string
2018-11-06
python3版本 print('lacie的链接')部分出现问题,AttributeError: 'NoneType' object has no attribute 'name'
print('lacie的链接')
link_node = soup.find('a', href = 'http://example.com/lacie')
print(link_node.name, link_node['href'], link_node.get_text())
print('lacie的链接')
link_node = soup.find('a', href = 'http://example.com/lacie')
print(link_node.name, link_node['href'], link_node.get_text())
2018-11-01
已采纳回答 / weibo_骆驼爱上跳舞的Bud_0
你要看你爬的数据的标签比如:<div class=666></div>,你就需要改成
soup.find('div',class_='')
2018-11-01