Question #474

Which of the following is an appropriate description of the continue statement?

The continue statement returns control to the beginning of a while loop. The continue statement rejects all remaining statements in the current iteration of the loop and moves the control back to the top of a loop. (tutorialspoint.com/python/python_loop_control.htm#:~:text...)


Comment on Disqus:

Question difficulty: 🔵🔵🔵🔵🔵


Similar questions: