Python爬虫问题

python爬虫问题
我用的是lxml库
import parsel
import requests
from lxml import etree
url='https://www.qqxsnew.net/138/138654/'
repont=requests.get(url)
text=repont.text
html=etree.HTML(text)
lis_href='\nhttps://www.qqxsnew.net'.join(html.xpath('//*[@id="list"]/dl/dd/a/@href'))
print(lis_href)

img


出现问题 第一个没有加https://www.qqxsnew.net怎么解决
第一个出来的就什么都不加!!!!!怎么办

lis_href = ['https://www.qqxsnew.net'+ item for item in html.xpath('//*[@id="list"]/dl/dd/a/@href')]
print(lis_href)