Skip to content
On this page

Generators:

Generators allow you to create iterators using the yield keyword.

python
# Generators
def countdown(n):
    while n > 0:
        yield n
        n -= 1

for num in countdown(5):
    print(num)