python里已知for循环次数_Python-For循环x次,循环中包含信息

我尝试在一条信息中循环x次,但似乎无法使用range()或isslice。我想说循环中的代码只循环x次。

html = driver.page_source

soup = BeautifulSoup(html, 'html.parser')

x = soup.find("div", class_="object-list-items-container")

for child in x.findChildren("section", recursive=False):

if "U heeft gereageerd" in child.text:

continue

else:

house_id = child.find("div", {'class': 'ng-scope'}).get("id")

driver.find_element_by_id(house_id).click()

我读过不少关于堆栈溢出的问题,但我可能没有足够的经验来实现它。我试过几种方法,但到目前为止都没有效果。

(“reacties”是x循环所需次数的变量)

for i in range(reacties):

for child in x.findChildren("section", recursive=False):

if "U heeft gereageerd" in child.text:

continue

else:

...........

以及:

for i in range(reacties):

child= x.findChildren("section", recursive=False)

if "U heeft gereageerd" in child.text:

continue

else:

...............

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值