Best daily deals

Affiliate links on Android Authority may earn us a commission. Learn more.

How to use dictionaries in Python

This post explains how to add to a dictionary in Python, create new dictionaries, and more.
By
February 8, 2021
How to use dictionaries in Python

One of the first things any new developer should learn when they start Python is how to create and store variables. These allow you to store and manipulate data, which is key to creating powerful and dynamic programs. One of the most powerful ways to store data in Python is with dictionaries. In this guide, you will learn how to create dictionaries, how to retrieve information, and how to add to a dictionary in Python!

Also read: How to round in Python

Basic commands

First, I’ll walk you through the statements you’ll need to create and access dictionaries. You’ll also learn how to add to a dictionary. Python makes all of this very easy! Then we’ll go over what this all means, and why you might want to use a dictionary over another method of storing values.

To create a new dictionary, you simply use curly brackets. You then enter your data, with the key and the value separated by a colon, and each entry separated by a comma:

Code
new_dict={"Jeff" : 7701489772,"Bill" : 7378999911, "Nancy" : 7711289354}

Note that Python will allow you to mix data types within your dictionary. Here, I have mixed strings and integers. This list stores a set of numbers with the person’s first name used as the key. This could be a handy way to quickly grab phone numbers of friends.

We can then retrieve the value based on the key:

Code
print(new_dict["Jeff"])

This will print Jeff’s number to the screen.

Updating entries is likewise very straightforward:

Code
new_dict["Jeff"] = 7789876224

And we can add to a dictionary in Python just as easily:

Code
newDict["Claire"] = 7711176329

Finally, we can delete dictionary entries, clear the entire thing, or completely delete the dictionary entry:

Code
Del new_dict[“Claire”]

new_dict.clear()

del new_dict

When to use dictionaries in Python

That is how to add to a dictionary in Python and much more. But what is a dictionary useful for and why would you want to use one?

Essentially, dictionaries work a lot like lists. This means you can store lots of data in a single place for easy retrieval. We’ve previously discussed how to use lists in Python here:

The difference between a dictionary and a list however, is that lists are sequential and use numbers for their indexes. If you insert a new element into a list, this will change the position of all the other elements. That means that if we wanted to add new numbers to our list over time, we’d have to keep track of which one was which somehow. This could get complicated!

The beauty of a dictionary then, is that the data can be stored in any order, and new entries won’t disrupt old ones. Moreover, we know that the index will always remain consistent, and we can use any logical system we like for naming each entry. This is perfect for phone books, but also many other applications that just aren’t suited to lists.

To really get a handle on how to add to a dictionary in Python, how to store data in other ways, and how to do much more, you should consider taking an online course. There is a huge amount to learn when it comes to Python; and these are skills that can enhance your career, improve your workflow, and be extremely rewarding to develop. Check out our guide to the best online Python courses, and consider something like the comprehensive Ultimate Python Programmer & Data Certification Bundle. That particular course is currently discounted from $1,800, all the way to $39.


For more developer news, features, and tutorials from Android Authority, don’t miss signing up for the monthly newsletter below!