Category: Ptython

  • Difference between Generator function and Normal function

    Difference between Generator function and Normal function There are few points that can clear the difference between Generator Function and Normal Function. Normal function has only one return statement in the loop whereas generator function can use one or more yield statement in the loop. While calling the generator functions, the normal function take pause immediately and control…