我试过这个;
no_of_p_tags = 10 # I'm assuming this. Yet to figure out how to find this.
for x in range(1,no_of_p_tags + 1)
test = content.xpath('//*[@id="ciHomeContentlhs"]/div[4]/div[2]/div[1]/p[x]/span/text()')
print test
(1) 如何在 div 中找到“p”标签的数量,以及 (2) 遍历它们以使用 python xpath 抓取底层文本?