“Iteradores reais do Python” Respostas de código

Iteradores reais do Python


looking_for = iter(when_to_change_the_mode)
current = next(looking_for)
for l in listA:
    do_something(current)
    if l == current:
        current = next(looking_for)

Lovely Louse

Iteradores reais do Python

>>> # Measure some strings:
... words = ['cat', 'window', 'defenestrate']
>>> for w in words:
...     print(w, len(w))
...
cat 3
window 6
defenestrate 12
khuDDD

Respostas semelhantes a “Iteradores reais do Python”

Perguntas semelhantes a “Iteradores reais do Python”

Mais respostas relacionadas para “Iteradores reais do Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código