Jump Statement:-
ऐसे statement जो प्रोग्राम कंट्रोल को बिना condition के प्रोग्राम के अन्दर एक स्थान से दूसरे स्थान पर transfer करते हैं jump statement कहलाते हैं जो निम्नलिखित हैं।
- Break statement
- Continue statement
- Pass Statement
Break statement:-
ब्रेक पाइथन में एक कीवर्ड है जिसका उपयोग प्रोग्राम कण्ट्रोल को लूप से बाहर लाने के लिए किया जाता है। ब्रेक स्टेटमेंट एक-एक करके loops को तोड़ता है, यानी nested loop के मामले में, यह पहले inner loop को तोड़ता है और फिर outer loop को आगे बढ़ाता है।
Python में break का use current for Loop , while Loop को terminate करने के लिए किया जाता है। means break keyword का use करके हम एक particular condition पर loop को exit कर सकते हैं।
Example
n=1 while n < 10 : print(n) if(n==5) : break n=n+1 Output 1 2 3 4 5 |
for n in range(1, 10) : print(n) if(n==5) : break
Output 1 2 3 4 5
|
for n in ‘python’ : if(n==’o’) : break print(n)
Output p y t h
|
Question 1:- wap to check whether a given number is the prime or not.
Question 2:- wap to find prime numbers in given Interval
Question3:- wap to add number from 1 to 10 and if user enter (-) then, loop breaks.
Jump Statement:-
Such statements which transfer program control from one place to another within the program without condition are called jump statements which are as follows.
- Break statement
- Continue statement
- Pass Statement
Break statement:-
break is a keyword in Python that is used to bring program control out of a loop. The break statement breaks the loops one by one, i.e. in case of nested loop, it first breaks the inner loop and then moves on to the outer loop.
In Python, break is used to terminate the current for Loop and while Loop. By using means break keyword we can exit the loop on a particular condition.
Example
n=1 while n < 10 : print(n) if(n==5) : break n=n+1 Output 1 2 3 4 5 |
for n in range(1, 10) : print(n) if(n==5) : break
Output 1 2 3 4 5
|
for n in ‘python’ : if(n==’o’) : break print(n)
Output p y t h
|
Question 1:– wap to check whether a given number is the prime or not.
Question 2:- wap to find prime numbers in given Interval
Question3:- wap to add number from 1 to 10 and if user enter (-) then, loop breaks.