Membership Operators:-
membership python operators का प्रयोग sequence में membership को टेस्ट करने के लिए किया जाता है। sequence एक list, एक string या एक tuple हो सकती है। membership ऑपरेटर दो प्रकार के होते हैं-
Operator |
Description |
Example |
in |
यदि ऑपरेटर के दोनों तरफ के वेरिएबल एक sequence में होते है तो condition सत्य होगी अन्यथा असत्य होगी। |
x in y |
not in |
यदि ऑपरेटर के दोनों तरफ के वेरिएबल एक sequence में नहीं होते है तो condition सत्य होगी अन्यथा असत्य होगी। |
x not in y |
Membership Operators:-
Membership Python operators are used to test membership in a sequence. sequence can be a list, a string or a tuple. There are two types of membership operators-
Operator |
Description |
Example |
in |
If the variables on both sides of the operator are in a sequence then the condition will be true otherwise it will be false. |
x in y |
not in |
If the variables on either side of the operator are not in a sequence then the condition will be true otherwise false. |
x not in y |