Creating a set from a list
furniture = ['table', 'chair', 'door', 'chair', 'chair']
things = set(furniture)
print(things)
print(type(things))
if 'table' in things:
print("has table")
Output:
{'table', 'chair', 'door'}
<class 'set'>
has table