私はあなたがループのために、私は事前に設定した回数の後に停止した見ることができるように、これはPythonのイテレータヘルプ+ lxmlの
import lxml
from lxml.cssselect import CSSSelector
from lxml.etree import fromstring
from lxml.html import parse
website = parse('http://example.com').getroot()
selector = website.cssselect('.name')
for i in range(0,18):
print selector[i].text_content()
をscript-持っています。私はforループがすべてを印刷した後で止まるようにしたい。
みんなありがとうを...私はxxx.comとしてウェブサイトを置くことに気づいただけです。 –
ちなみに、 'cssselect'メソッドをルート上で使用しているので、' CSSSelect'をインポートする必要はありません。 –