diff --git a/README.md b/README.md index 5bcaac0..4b4f79e 100644 --- a/README.md +++ b/README.md @@ -153,8 +153,9 @@ def step(start, step): start += step ``` ```python -stepper = step(10, 2) -next(stepper) # 10 (, 12, 14, ...) +>>> stepper = step(10, 2) +>>> next(stepper), next(stepper), next(stepper) +(10, 12, 14) ```