Advertisements
Advertisements
प्रश्न
List the differences between break and continue statements.
Continue statement is used only in theloop statement.
फरक स्पष्ट करा
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
संबंधित प्रश्न
How many important control structures are there in Python?
Elif can be considered to be the abbreviation of ______.
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
Write is the syntax of if..else statement?
Write a note on the range () in the loop?
Write a program to display.
A
A B
A B C
A B C D
A B C D E
Write a detail note on for loop?
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display all 3 digit odd numbers.