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
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
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