In Python, conditional statements help you make decisions in the code. There are three main types of conditionals:-
पायथन में, सशर्त कथन आपको कोड में निर्णय लेने में मदद करते हैं। सशर्त के तीन मुख्य प्रकार हैं:-
1.) Conditional `if` statement:-
An `if` statement executes the code block only if the condition evaluates to `True`.
1.) सशर्त `if` कथन:- एक `if` स्टेटमेंट कोड ब्लॉक को केवल तभी निष्पादित करता है जब स्थिति सही पर मूल्यांकन करती है।
Syntax:-
if condition:
Statement(s)
Example:-
x = 10
if x > 5:
print("x is greater than 5")
2.) Alternative `if-else` statement:
An `if-else` statement checks a condition and executes a block of code('if' block), if the condition is true otherwise provides an alternative block of code ('else' block), if the condition is false.
2.) वैकल्पिक `if- else` कथन:- एक `if-else` स्टेटमेंट एक शर्त की जाँच करता है और कोड के एक ब्लॉक ('if' ब्लॉक) को निष्पादित करता है, यदि स्थिति सही है अन्यथा कोड का एक वैकल्पिक ब्लॉक ('else' ब्लॉक) प्रदान करता है, यदि स्थिति गलत है।
Syntax:-
if condition:
Statement(s)
else:
Statement(s)
Example:-
x = 3
if x > 5:
print("x is greater than 5")
else:
print("x is not greater than 5")
3.) Chained `if-elif-else` statement:- It allows multiple conditions to be checked one after another. It means we can chain multiple conditions together using `if`, `elif` (short for "else if"), and `else`. Here, It executes a block of code('if' block), if the condition is true otherwise it checks 'elif' and executes a block of code('elif' block), if the condition is true and in the end it also provides an alternative block of code ('else' block), Now It executes a block of code ('else' block), if both of the above conditions are false.
3.) जंजीर `if-elif-else` कथन:- यह कई स्थितियों को एक के बाद एक जांचने की अनुमति देता है। इसका मतलब है कि हम `if`, `elif` ("else if" का संक्षिप्त रूप), और `else` का उपयोग करके कई स्थितियों को एक साथ जोड़ सकते हैं। यहां, यदि स्थिति सत्य है तो यह कोड के एक ब्लॉक ('if' ब्लॉक) को निष्पादित करता है अन्यथा यह 'elif' की जांच करता है और यदि स्थिति सत्य है तो कोड के एक ब्लॉक ('elif' ब्लॉक) को निष्पादित करता है और अंत में यह एक वैकल्पिक ब्लॉक ('else' ब्लॉक) प्रदान करता है। अब यदि उपरोक्त दोनों स्थितियाँ गलत हैं, तो कोड का एक ब्लॉक (`else` ब्लॉक) निष्पादित किया जाता है।
This is useful when you have two or more than two possible conditions.
यह तब उपयोगी होता है जब आपके पास दो या दो से अधिक संभावित स्थितियाँ हों।
Syntax:-
if condition:
Statement(s)
elif condition:
Statement(s)
else:
Statement(s)
Example:-
x = 10
if x < 5:
print("x is less than 5")
elif x == 5:
print("x is equal to 5")
else:
print("x is greater than 5")
No comments:
Post a Comment