Glossary coding Term Page

Generator

a function or expression that uses `yield` to produce values and automatically becomes an

generator #coding#python
Korean version

Related Concepts

Core Idea

Generator is a function or expression that uses yield to produce values and automatically becomes an iterator. It usually makes the most sense alongside Iterable, Iterator, Lazy evaluation.

Why It Matters Here

Mathbong reuses this term across python posts as shared vocabulary.

Posts Mentioning This Concept