Glossary coding Term Page

Lazy evaluation

a strategy that defers computation until the moment the value is requested

lazy-evaluation #coding#python
Korean version

Related Concepts

Core Idea

Lazy evaluation is a strategy that defers computation until the moment the value is requested. It usually makes the most sense alongside Iterable, Iterator, Generator.

Why It Matters Here

Mathbong reuses this term across python posts as shared vocabulary.

Posts Mentioning This Concept