Computer Science, asked by jyugozaraki, 7 months ago

What is the role of
'continue'
statement in Python?​

Answers

Answered by pushkarajpatil0106
1

Answer:

Continue means to do a work without a break

Answered by Anonymous
7

Answer:

Here is your answer

  • The continue statement in Python returns the control to the beginning of the while loop.
  • The continue statement rejects all the remaining statements in the current iteration of the loop and moves the control back to the top of the loop
  • The continue statement can be used in both while and for loops.
Similar questions
Math, 3 months ago