Skip to main content

Conditional statements in Python if, if-else, if-elif-else पायथन में सशर्त कथन

 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")

 

Comments

Popular posts from this blog

Programming with Python Language Tutorial available in hindi and english पाइथन प्रोग्रामिंग टुटोरिअल हिंदी एवं अंग्रेजी भाषा में

 Unit -01 1. Introduction to python (पाइथन भाषा का परिचय) 2. History of Python Programming Language पाइथन प्रोग्रामिंग लैंग्वेज का इतिहास 3. Python Programming Language’s Features and Advantages पायथन प्रोग्रामिंग लैंग्वेज की प्रमुख विशेषताएं 4. Python’s Programming Language's Popularity पाइथन प्रोग्रामिंग लैंग्वेज की लोकप्रियता 5.The Future of Python Programming Language पायथन प्रोग्रामिंग लैंग्वेज का भविष्य 6. The Python Interpreter पायथन इंटरप्रेटर 7. The Python IDLE पाइथन आईडीएलई 8. Installation process of Python IDLE पायथन आईडीएलई की इंस्टालेशन प्रक्रिया 9. Dynamically typed and strongly typed features of python गतिशील रूप से टाइप और दृढ़ता से टाइप की गई भाषा पायथन 10. Basic Data Types of Python पायथन के बेसिक डेटा टाइप 11. Variables in python पायथन में वेरिएबल 12. Expressions in Python पायथन में अभिव्यक्तियां 13. Statements in Python पायथन में कथन 14. Operator's in Python पायथन में ऑपरेटर्स 15. Flow of execution of a python program पाइथन प्रोग्राम के निष्पादन का प्रवाह 16...

Filter function of python

filter function:-  Imagine we have a bunch of things, like a list of numbers, a collection of fruits, or any other group of items. Now, let's say we want to pick out only certain items from that group based on a specific condition. This is where the filter function comes in handy. Let's say we have a list of numbers, and we want to filter out only the even numbers. We define a condition-checking function that checks if a number is even. Then, we pass this function and the list of numbers to the filter function. It goes through each number, applies the condition-checking function, and keeps only the numbers that are even. Finally, it gives us a new list containing only the even numbers. def is_even(num):     return num % 2 == 0 numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] filtered_numbers = list(filter(is_even, numbers)) print(filtered_numbers) Output [2, 4, 6, 8, 10] We can also utilize lambda expressions to define filtering conditions directly within the filter function. nu...

Python Programming Language’s Features and Advantages पायथन प्रोग्रामिंग लैंग्वेज की प्रमुख विशेषताएं

Python is a versatile and popular programming language known for its simplicity and readability. It has a wide range of features that make it suitable for various types of projects. Here are some key features of the Python programming language:- पायथन एक बहुमुखी और लोकप्रिय प्रोग्रामिंग भाषा है जो अपनी सरलता और पठनीयता के लिए जानी जाती है। इसमें कई प्रकार की विशेषताएं हैं जो इसे विभिन्न प्रकार की परियोजनाओं के लिए उपयुक्त बनाती हैं। पायथन प्रोग्रामिंग भाषा की कुछ प्रमुख विशेषताएं निम्न हैं:- 1. Open Source ओपन सोर्स:-   Python is an open-source language, which encourages collaboration and allows developers to contribute to its ongoing development. पायथन एक ओपन-सोर्स भाषा है, जो सहयोग को प्रोत्साहित करती है और डेवलपर्स को इसके चल रहे विकास में योगदान करने की अनुमति देती है। 2. Integrated Development & Learning Environments एकीकृत विकास एवं अध्ययन वातावरण  (IDLEs/IDEs):-  Python has several powerful IDLEs/IDEs, such as PyCharm, VSCode, and Jupyter, that provide too...