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

Create dictionary from List

categories_list = ['animals', 'vegetables', 'fruits']

categories_dict = {cat:[] for cat in categories_list}
print(categories_dict)
categories_dict['animals'].append('cat')
print(categories_dict)

{'animals': [], 'vegetables': [], 'fruits': []}
{'animals': ['cat'], 'vegetables': [], 'fruits': []}