-->

Python Control Statements





Hello Dosto आपका welcome है हमारे इस tutorial में आज हम जानेंगे python में control statement क्या होता है और कौन-कौन से control statement होते हैं और इनका क्या use है ।

 

Control statement:

 

Python के statement को one by one same order में execute किया जाता है जैसे वे program में दिखाई देता है। लेकिन जब हम conformation के आधार पर  statements base को execute करना चाहते हैं तो  कुछ आवश्यकताएं हो सकती हैं। यहां तक ​​ कि कुछ situations भी हो सकती हैं जहां हम किसी एक statement या multiple statement "n" times execute करना चाहते हैं जब तक कि condition true हो। तो python के executions के flow को control करने के लिए python हमें control statement provides करता है|
 

Python language में विभिन्न प्रकार के control statement है जो निम्नलिखित हैं:


If statement : 

program में condition true है या नहीं check करने के  लिए if statement  का use करते हैं।

 

Syntax for if Statement

 if condition :

    if statement

 

Example for if statement:

age=input ('Enter your age :')

age=int(age)

if age>=14:

     print ('you are above 14')


Output:


if Statement is Running:





 

Pass statement: 

जब program में हमें कुछ और न लिखना हो तब Pass statement का use किया जाता है । For example जैसे कि हमने कोई program बनाया और उस program को complete किये  बिना ही run करेंगे तो error आयेगी तब उस error को हटाने के लिए pass statement का use करते हैं।

 

Syntax for pass statement :

         Pass condition:

 

Example for pass statement :

age = 18

if age>18:

          pass

 

Output:


Pass Statement is Running:










if else statement :   

program में अगर expression true है तो if statement excute होता है अगर program में expression false होता है तो else statement excute होता है ।

 

 Syntax for if else statement:

          if condition :

                  if statement

         else:

                else statement

 

Example for if else statement:

age=input ('Enter your age :')

age=int(age)

if age>=14:

   print ('you are above 14')

else:

    print('your are not above 14')



Output:


if Statement is Running:




else Statement is Running:









 

if …. elif ….else statement : 

program में multiple condition को check करने के लिए if -elif-else statement का use करते हैं । Program में if की condition true होती है तो if statement excute होता है अगर if की condition false होती है तो elif condition check करते हैं elif condition true होती है तो elif statement excute होता है अगर elif condition false होती है तो else statement excute होता है।

 

Syntax for if…elif…else statement :

 

       if condition :

           if statement

     elif condition :

           elif statement

    else:

        else statement

 

Example for if…elif…else statement:

age = input ('please enter your age :')

age = int( age)

if age <=7:

     print ('you can not watch')


elif  age<=12:

        print ('Ticket price: 150')

else:

      print ('Ticket price: 300')

 

 Output:


if Statement is Running:










elif Statement is Running:







else Statement is Running:










आज का tutorial आपको कैसा लगा comments कर के बताए । python के जो भी topic complete हो चुके है उसके practice quiz हमने telegram पर डालें है आप  सभी quiz के answer जरूर दें । 

Telegram = ApnaHindiTech 


😊हमारे साथ बने रहने के लिए आपका बहुत बहुत धन्यवाद !😊

 

        

                        

        

          

यह भी पढ़ें

Post a Comment