Advertisements
Advertisements
प्रश्न
Write a note on the break statement.
टिप्पणी लिखिए
उत्तर
- The break statement terminates the loop containing it.
- Control of the program flows to the statement immediately after the body of the loop.
- When the break statement is executed, the control flow of the program comes out of the loop and starts executing the segment of code after the loop structure.
- If the break statement is inside a nested loop (loop inside another loop), the break will terminate the innermost loop.
shaalaa.com
Control Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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 amongst this is not a jump statement?
List the control structures in Python.
Write is the syntax of if..else statement?
Write a note on if..else structure.
Write the syntax of the while loop.
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display all 3 digit odd numbers.