DEV Community

Cover image for Membership Operators in python
Aswin Barath
Aswin Barath

Posted on • Updated on

 

Membership Operators in python

Membership operators are used to testing if a sequence with the specified value is present in the given object.

Fact: In python, all data types are implemented as an object.

Let's go code through each of them.

in operator

Alt Text
Output:

True
Enter fullscreen mode Exit fullscreen mode

not in operator

Alt Text
Output:

True
Enter fullscreen mode Exit fullscreen mode

Code along and have fun ;)

Oldest comments (0)