イテレータ自体をインクリメントせずに、Pythonでイテレータが指すアイテムを取得する方法はありますか?たとえば、イテレータを使用して次を実装するにはどうすればよいでしょうか。
looking_for = iter(when_to_change_the_mode)
for l in listA:
do_something(looking_for.current())
if l == looking_for.current():
next(looking_for)