I'm going through Zed Shaw's Learn Python The Hard Way textbook (LPTHW).
When Zed creates dictionaries he is using second bracket to create them. Such as:
# Creating an empty dictionary
dict = []
Here is a picture example where he used a dictionary to create a setup file for a project, using second brackets to create a dictionary called 'config':
link : implementation of dictionary from his workbook
But this is giving me an error. How do I solve it?