Description : A function that returns an iterator.
Answer :
A Python generator is a function that returns an iterator, which allows you to iterate over a sequence of values without creating a list or other data structure in memory. Generators are defined using the `yield` keyword.