Result Size:
625 x 571
demo_set_in.py:
thisset = {"apple", "banana", "cherry"} print("banana" in thisset)
x
thisset
=
{
"apple"
,
"banana"
,
"cherry"
}
print
(
"banana"
in
thisset
)
C:\Users\My Name>python demo_set_in.py
True