Advertisements
Advertisements
Questions
List the differences between break and continue statements.
Continue statement is used only in theloop statement.
Distinguish Between
Advertisements
Solution
| S. No. | Break | Continue |
| 1. | Break statement is used to terminate a block in which it exists. | Continue statement is used to move the control to the next iteration of the loop ignoring other statements. |
| 2. | Break statement can be used in switch-case as well as in loop statements. | Continue statement is used only in the loop statement. |
shaalaa.com
Control Structure
Is there an error in this question or solution?
RELATED QUESTIONS
How many important control structures are there in Python?
The condition in the if statement should be in the form of ______
Which is the most comfortable loop?
Which amongst this is not a jump statement?
Write a note on the break statement.
Write a note on the range () in the loop?
Write a note on if..else structure.
Using if..else..Elif statement writes a suitable program to display the largest of 3 numbers.
Write the syntax of the while loop.
Write a detail note on for loop?
