What is the role of
'continue'
statement in Python?
Answers
Answered by
1
Answer:
Continue means to do a work without a break
Answered by
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