Membership Operators
Operator
Meaning
Example
Example
text = "Hello world"
data = {1: "a", 2: "b"}
print("H" in text) # True
print("hello" in text) # False (case-sensitive)
print(1 in data) # True (checks keys)
print("a" in data) # FalseNote
Last updated