Result Size: 625 x 571
demo_oper_membership1.py:
x
 
x = ["apple", "banana"]
print("banana" in x)
# returns True because a sequence with the value "banana" is in the list
C:\Users\My Name>python demo_oper_membership1.py
True