我尝试使用从xpath获得白色拆分字符串,但没有成功
x="78646182309549(5)"
x.split()
所以我检查了字符串中是否有白色
x.isspace()
它显示为False
这是html
<td class="tl"><a href="https://www.zto.com/?num=78646182309549(5)" target="_blank" style="font-weight:bold;font-size:14px;">78646182309549(5)</a></td>
x = response.xpath(
"(//td[@class='tl']//a)[1]/text()").extract_first()
print(x)
print(x.isspace())
结果:错误
1条答案
按热度按时间wljmcqd81#