What method is used to resume the execution of a generator function?

  • resume()
  • continue()
  • next()
  • run()
The correct method to resume the execution of a generator function is next(). This method is called on the Generator object and proceeds to the next yield statement, returning the yielded value. Options a), b), and d) are incorrect and not used for resuming a generator function.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *