Skip to ContentGo to accessibility pageKeyboard shortcuts menu
OpenStax Logo

Learning objectives

By the end of this section you should be able to

  • Describe the structure of a dictionary object.
  • Use type() to identify the type of a dictionary object.
  • Explain why a dictionary object does not have duplicate key values.

Dictionaries

A dictionary in Python is a container object including key-value pairs. An example of a key-value item is a word in an English dictionary with its corresponding definition.

Checkpoint

Dictionaries

Concepts in Practice

Dictionary basics

Given the dictionary object days = {"Sunday": 1, "Monday": 2, "Tuesday": 3}, answer the following questions.

1.
What are the keys in the days dictionary object?
  1. "Sunday", "Monday", "Tuesday"
  2. 1, 2, 3
  3. 0, 1, 2
2.
What are the values in the days dictionary object?
  1. 0, 1, 2
  2. 1, 2, 3
  3. "Sunday", "Monday", "Tuesday"
3.
What is the value associated with key "Sunday"?
  1. "Sunday"
  2. 1
  3. 0

Dictionary type and properties

The dict type implements a dictionary in Python. Since a dictionary object is used to look up values using keys, a dictionary object cannot hold duplicate key values.

Checkpoint

Dictionary properties

Concepts in Practice

Dictionary type and properties

Given the dictionary object encoding = {"a": 97, "b": 98, "A": 65, "B": 66}, answer the following questions.

4.
What does type(encoding) return?
  1. dictionary
  2. dict
  3. str
5.
The encoding dictionary contains duplicate keys since it has both "a" and "A" as keys.
  1. true
  2. false
6.
A dictionary can have duplicate values.
  1. true
  2. false

Try It

Investigate variable types

Given the variables in the code below, examine the variables' types.

Citation/Attribution

This book may not be used in the training of large language models or otherwise be ingested into large language models or generative AI offerings without OpenStax's permission.

Want to cite, share, or modify this book? This book uses the Creative Commons Attribution License and you must attribute OpenStax.

Attribution information
  • If you are redistributing all or part of this book in a print format, then you must include on every physical page the following attribution:
    Access for free at https://openstax.org/books/introduction-python-programming/pages/1-introduction
  • If you are redistributing all or part of this book in a digital format, then you must include on every digital page view the following attribution:
    Access for free at https://openstax.org/books/introduction-python-programming/pages/1-introduction
Citation information

© Mar 15, 2024 OpenStax. Textbook content produced by OpenStax is licensed under a Creative Commons Attribution License . The OpenStax name, OpenStax logo, OpenStax book covers, OpenStax CNX name, and OpenStax CNX logo are not subject to the Creative Commons license and may not be reproduced without the prior and express written consent of Rice University.

This book utilizes the OpenStax Python Code Runner. The code runner is developed by Wiley and is All Rights Reserved.