The ______ statement in Python is used to resume the loop from the top.

  • break
  • continue
  • goto
  • return
The continue statement in Python is used to skip the rest of the current iteration of a loop and resume the loop from the top with the next iteration. It allows you to bypass certain iterations based on a condition.
Add your answer
Loading...

Leave a comment

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