###### Table of Contents
- [[]]
- [[]]
- [[]]
- [[]]
The `yield` keyword pauses generator function execution and the value of the expression following the `yield` keyword is returned to the generator's caller.
It can be thought of as a generator-based version of the `return` keyword.
Once paused on a `yield` expression, the generator's code execution remains paused until the generator's `next()` method is called
#### More info
[Some website](https://test.com)
___
**Tags**: #generators