Posted in April 2014

Python Generators vs. Closures

Generators and closures are two special function types that can come in handy under the right circumstances. To illustrate the basic usage and differences I will use some example code.   # python def inc_by_10_generator():     # returns infinite series of 10’s starting at 10 – recalls position     i = 10     while True: … Continue reading