What is Operators in Python programming in Hindi

+

-

=

*

<<

/

%

>>

पायथन में ऑपरेटर विशेष सिम्बल होते हैं, जिनका उपयोग हम डेटा पर विभिन्न गणितीय, लॉजिक और बूलियन संचालन करने के लिए कर सकते है । ऑपरेटर जिस मान पर काम करता है उसे ऑपरेंड कहा जाता है ।

पायथन में ऑपरेटर क्या है ?

+

_

*

/

पायथन प्रोग्रामिंग में कितने प्रकार के ऑपरेटर होते है ?

पायथन प्रोग्रामिंग में कई प्रकार के ऑपरेटर होते है, जिनका विबरण निम्न प्रकार हैं :-

1. Arithmetic operator 2. Comparison operators 3. Logical operators 4. Assignment operators 5. Bitwise operators 6. Identity operators 7. Membership operators

Python Arithmetic operator

इसका उपयोग निम्न प्रकार है :-

अंकगणित ऑपरेटरों का उपयोग सामान्य गणितीय कार्यों को करने के लिए संख्यात्मक मानों के साथ किया जाता है । 

+ adds two operands

- subtracts two operands

* multiplies two operands

/ divides the first operand by the second

% returns the remainder when the first operand is divided by the second

** Returns first raised to power second

Python Comparison operators

इसका उपयोग निम्न प्रकार है :-

इस ऑपरेटरों का उपयोग दो मानों की तुलना करने के लिए किया जाता है ।  

>  Greater than: True if the left operand is greater than the right

<  Less than: True if the left operand is less than the right

== Equal to: True if both operands are equal

!= Not equal to – True if operands are not equal

Python Comparison operators

इसका उपयोग निम्न प्रकार है :-

इस ऑपरेटरों का उपयोग दो मानों की तुलना करने के लिए किया जाता है ।  

>=  Greater than or equal to True if the left operand is greater than or equal to the right

<= Less than or equal to True if the left operand is less than or equal to the right

Python Logical operators

इसका उपयोग निम्न प्रकार है :-

कंडीशनल स्टेटमेंट को संयोजित करने के लिए लाजिक ऑपरेटरों का उपयोग किया जाता है ।  

Logical AND :  True if both the operands are true

Logical OR :   if either of the operands is true

Logical NOT :  True if the operand is false

Python Assignment operators

इसका उपयोग निम्न प्रकार है :-

असाइनमेंट स्टेटमेंट का उपयोग वेरिएबल्स को मान निर्दिष्ट करने के लिए किया जाता है ।  आम तौर पर असाइनमेंट ऑपरेटर 6 प्रकार के होते हैं :-

=  Assign value of right side of expression to left side operand

+= Add AND: Add right-side operand with left side operand and then assign to left operand

-=  Subtract AND: Subtract right operand from left operand and then assign to left operand

Python Assignment operators

इसका उपयोग निम्न प्रकार है :-

असाइनमेंट स्टेटमेंट का उपयोग वेरिएबल्स को मान निर्दिष्ट करने के लिए किया जाता है ।  आम तौर पर असाइनमेंट ऑपरेटर 6 प्रकार के होते हैं :-

*=   Multiply AND

/=   Divide AND

%=  Modulus AND

**=   Exponent AND

&=  Performs Bitwise AND

|=  Performs Bitwise OR

^=   Performs Bitwise XOR

>>=  Performs Bitwise right shift

Python Bitwise operators

इसका उपयोग निम्न प्रकार है :-

बिटवाइज ऑपरेटरों का उपयोग बाइनरी संख्याओं की तुलना करने के लिए किया जाता है ।  बिटवाइज ऑपरेटर बिटस पर कार्य करते हैं और बिट बाय बिट ऑपरेषन करते हैं । बिटवाइज ऑपरेटर 6 प्रकार के होते हैं :-

&   Bitwise AND

I   Bitwise OR

~   Bitwise NOT

^   Btwise XOR

>>   Bitwise right shift

<<   Bitwise left shift

Python Identity operators

इसका उपयोग निम्न प्रकार है :-

इस ऑपरेटरों का उपयोग वस्तुओं की तुलना करने के लिए किया जाता है । पहचान ऑपरेटरों का उपयोग यह जांचने के लिए किया जाता है कि क्या दो मान मेमोरी के एक ही हिस्से पर स्थित हैं । पहचान ऑपरेटर दो प्रकार के होते हैं :-

is True if the operands are identical

is not - True if the operands are not identical

Python Membership operations

इसका उपयोग निम्न प्रकार है :-

सदस्यता  ऑपरेटरों का उपयोग यह जांचने के लिए किया जाता है कि क्या किसी वस्तु में अनुक्रम प्रस्तुत किया गया है। सदस्यता  ऑपरेटर दो प्रकार के होते हैं :-

in True if value is found in the sequence

not in  -  True if value is not found in the sequence

अंतिम विचार 

पायथन प्रोग्रामिंग के बारे में अधिक जानने के लिए, आप हमारी वेबसाइट को नीचे दिए लिंक से विजिट कर सकते हैं ।