python3 获取html内容中的a链接与内容


# -*- coding:utf8 -*-
import requests
import lxml.html

# 获取html内容中的a链接与内容
chapters_url = "http://www.civil.tsinghua.edu.cn/ce/83.html"
html = requests.get(chapters_url).content
selector = lxml.html.fromstring(html)
res = selector.xpath("///a/text()")
res1 = selector.xpath("///a/@href")
# print(res)
# print(res1)

for i,s in enumerate(res):
    print(res1[i])
    print(s)

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM