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

Best Resources

Who Am I?

I’m Aswin Barath, a Software Engineering Nerd who loves building Web Applications, now sharing my knowledge through Blogging during the busy time of my freelancing work life. Here’s the link to all of my socials categorized by platforms under one place: https://linktr.ee/AswinBarath

Thank you so much for reading my blog🙂.

Top comments (0)