Python Membership and Identity Operators
Membership operators check if a value is present in a sequence. in operator returns true if element exists, false otherwise. not in operator checks for absence of value in sequence. Empty strings are considered part of string
- studytonight.com