Membership Test Operators in Python

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 24:- Membership Test Operators in Python

In Python, membership test operators are used to check if a value exists within a collection, such as a list, tuple, set, or string. These operators allow you to determine if a particular element is present in the given collection. There are two membership test operators in Python:

  1. in operator: The in operator returns True if the specified value is present in the collection, and False otherwise.

Example:

pythonCopy code

# List membership test numbers = [1, 2, 3, 4, 5] print(3 in numbers)  # Output: True print(6 in numbers)  # Output: False # String membership test text = "Hello, World!" print("Hello" in text)   # Output: True print("Python" in text)  # Output: False

In this example, the in operator is used to check if the values 3 and 6 are present in the list numbers, and the values "Hello" and "Python" are present in the string text.

  1. not in operator: The not in operator is the negation of the in operator. It returns True if the specified value is not present in the collection, and False if the value is present.

Example:

pythonCopy code

# Tuple membership test fruits = ("apple", "banana", "orange") print("apple" not in fruits)   # Output: False print("grape" not in fruits)   # Output: True

In this example, the not in operator is used to check if the values "apple" and "grape" are present in the tuple fruits.

Membership test operators are commonly used to check for the existence of specific elements in collections before performing certain actions or making decisions based on their presence. They are particularly useful when dealing with lists, tuples, sets, and strings in Python. 

4. Operators

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support