Python - Loop Control
Which of the following best describes the difference between
continue and break in a loop?continue and break in a loop?continue behaviorcontinue skips the rest of the current iteration and moves to the next iteration.break behaviorbreak immediately exits the entire loop, stopping all further iterations.continue skips to the next iteration; break exits the loop entirely. -> Option A15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions