Python Developer Question:

Tell me why And When Do You Use Generators In Python?

Tweet Share WhatsApp

Answer:

A generator in Python is a function which returns an iterable object. We can iterate on the generator object using the <yield> keyword. But we can only do that once because their values don’t persist in memory, they get the values on the fly.

Generators give us the ability to hold the execution of a function or a step as long as we want to keep it. However, here are a few examples where it is beneficial to use generators.

☛ We can replace loops with generators for efficiently calculating results involving large data sets.
☛ Generators are useful when we don’t want all the results and wish to hold back for some time.
☛ Instead of using a callback function, we can replace it with a generator. We can write a loop inside the function doing the same thing as the callback and turns it into a generator.

Download Python Developer PDF Read All 77 Python Developer Questions
Previous QuestionNext Question
Tell us which Python Function Will You Use To Convert A Number To A String?Explain me what is pass in Python?