I want to build a dictionary in Python. However, all the examples that I see are instantiating a dictionary from a list, etc . ..

How do I create a new empty dictionary in Python?

8 s
8

Call dict with no parameters

new_dict = dict()

or simply write

new_dict = {}

Leave a Reply

Your email address will not be published. Required fields are marked *