for t in soup.find_all('a'): # for循环遍历所有a标签,并把返回列表中的内容赋给t
print('t的值是:', t) # link得到的是标签对象
print('t的类型是:', type(t))
print('a标签中的href属性是:', t.get('href')) # 获取a标签中的url链接
print('t的值是:', t) # link得到的是标签对象
print('t的类型是:', type(t))
print('a标签中的href属性是:', t.get('href')) # 获取a标签中的url链接
2020-01-14
之前讲过的这个方式
html = urlopen("https://en.wikipedia.org/robots.txt").read().decode("utf-8")
print(html)
爬出来的结果,似乎还更有秩序一些?
html = urlopen("https://en.wikipedia.org/robots.txt").read().decode("utf-8")
print(html)
爬出来的结果,似乎还更有秩序一些?
2019-11-30