Advertisements
Advertisements
Questions
List the differences between break and continue statements.
Continue statement is used only in theloop statement.
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. |
RELATED QUESTIONS
Which statement is generally used as a placeholder?
What is the output of the following snippet?
i=1
while True:
if i%3 ==0:
break
print(i,end='')
i +=1
What is the output of the following snippet?
T=1
while T:
print(True)
break
Which punctuation should be used in the blank?
if<condition>_
statement-block 1
else:
statement-block 2
List the control structures in Python.
Write a note on the break statement.
Write is the syntax of if..else statement?
Using if..else..Elif statement writes a suitable program to display the largest of 3 numbers.
Write a program to display all 3 digit odd numbers.
Write a program to display a multiplication table for a given number.