Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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