demo_set_in.py:
thisset = {"apple", "banana", "cherry"} print("banana" in thisset)
➜ begtut>python demo_set_in.py
True