废话不多说直接上代码
获取
<div style:"color:red"></div>
style = html.xpath('//div/@style')
运行结果
"color:red"
然后可以通过
str = style[0]
#修改你想从哪里开始截取 修改find里面的参数
start = str.find('"color:') + len('"color:') # 找到 URL 起始位置
end = str.find('"', start) # 找到 URL 结束位置
color = str[start:end] # 截取出 URL
print(color)
就可以得到 color 为 red