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

things = {'table', 'chair', 'door', 'chair'}
print(things)
print(type(things))

if 'table' in things:
   print("has table")


Output:

{'door', 'chair', 'table'}
<class 'set'>
has table