break, continue, and pass in Python पायथन में, `ब्रेक`, ` कंटिन्यू`, और `पास`

In Python, `break`, `continue`, and `pass` are control flow statements used in for and while loops and conditional if-else.
पायथन में, `ब्रेक`, ` कंटिन्यू`, और `पास` नियंत्रण प्रवाह के कथन हैं जिनका उपयोग फॉर और व्हाइल लूप और कंडीशनल इफ-एल्स में किया जाता है।

1.) break statement:- It Exits the loop immediately, regardless of the iteration count or condition. It is commonly used to stop a loop when a certain condition is met.
1.) ब्रेक स्टेटमेंट:- यह पुनरावृत्ति गणना या स्थिति की परवाह किए बिना तुरंत लूप को समाप्त कर देता है। इसका उपयोग आमतौर पर एक निश्चित शर्त पूरी होने पर लूप को रोकने के लिए किया जाता है।

Syntax:-

 break

Example:-

for i in range(5):

  if i == 3:

     break

  print(i)

Output:-

0
1
2

2.) continue statement:- It skips the rest of the code inside the loop for the current iteration and moves to the next iteration. It is Useful when we want to skip certain conditions in the loop but continue iterating.
2.) कंटिन्यू कथन: - यह वर्तमान पुनरावृत्ति के लिए लूप के अंदर शेष कोड को छोड़ देता है और अगले पुनरावृत्ति पर चला जाता है। यह तब उपयोगी होता है जब हम लूप में कुछ शर्तों को छोड़ना चाहते हैं लेकिन पुनरावृत्ति जारी रखते हैं।

Syntax:-

  continue

Example:-

for i in range(5):

  if i == 3:

    continue

  print(i)

Output:-

0
1
2
4

3.) pass statement:- It does nothing. It's a placeholder that lets you define a code block syntactically but without any operation. It is Useful in places where syntactically, a statement is required but you don't want to execute any code yet for example during development of program.
3.) पास स्टेटमेंट:- यह कुछ नहीं करता है। यह एक प्लेसहोल्डर है जो आपको बिना किसी ऑपरेशन के कोड ब्लॉक को वाक्यात्मक रूप से परिभाषित करने देता है। यह उन जगहों पर उपयोगी है जहां वाक्यविन्यास की दृष्टि से, एक कथन की आवश्यकता होती है लेकिन आप अभी तक किसी भी कोड को निष्पादित नहीं करना चाहते हैं, उदाहरण के लिए प्रोग्राम के विकास के दौरान।

Syntax:-
  pass 

Example:-

for i in range(5):

  if i == 3:

    pass # Placeholder

  print(i)

Output:-

0
1
2
3
4

No comments:

Post a Comment