Skip to ContentGo to accessibility page
Introduction to Python Programming

10.2 Dictionary creation

Introduction to Python Programming10.2 Dictionary creation

10.2 Dictionary creation

Learning objectives

By the end of this section you should be able to

  • Create a dictionary object with given key/value pairs.

Dictionary creation

Two methods exist for creating an empty dictionary:

  • Using curly braces {}. Ex: dict_1 = {}.
  • Using the dict() function. Ex: dict_2 = dict().

A dictionary object can also be created with initial key-value pairs enclosed in curly braces. Ex: my_dict = {"pizza": 2, "pasta": 3, "drink": 4} creates a dictionary object my_dict. A key and associated value are separated by a colon, and key-value pairs are separated by commas.

Checkpoint

Creating a dictionary object

Creating a dictionary object; ch 10, video 3

Concepts in Practice

Creating dictionary exercises

1.
What is the correct syntax to create an empty dictionary in Python?
  1. my_dict = ()
  2. my_dict = {}
  3. my_dict = []
2.
What is the correct syntax to create a dictionary with one item "one": 1?
  1. my_dict = ("one": 1)
  2. my_dict = ("one", 1)
  3. my_dict = {"one": 1}
3.

How many items does the my_dict object contain?

my_dict = {"a": 1, "b": 2}
  1. 1
  2. 2
  3. 4

dict() for dictionary creation

A dictionary object can be created with initial key-value pairs using the dict() function.

  • Creating a dictionary from a list of tuples. my_list = [("apple", 2), ("banana", 3), ("orange", 4)] my_dict = dict(my_list)
  • Creating a dictionary using keyword arguments. my_dict = dict(apple=2, banana=3, orange=4)
  • Creating a dictionary from another dictionary. old_dict = {"apple": 2, "banana": 3, "orange": 4} new_dict = dict(old_dict)

Checkpoint

dict() for dictionary initialization

dict()for dictionary initialization; ch 10, video 4

Concepts in Practice

dict() function for dictionary creation

4.
What is the correct syntax to create a dictionary with initial values in Python?
  1. my_dict = [key1:value1, key2:value2]
  2. my_dict = dict(key1=value1, key2=value2)
  3. my_dict = {key1=value1, key2=value2}
5.
What is the output of the following code?
my_dict = dict({"a": 1})
print(my_dict)
  1. {"a": 1}
  2. <class, 'dict'>
  3. "a"
    1
6.
Which option creates a dictionary with two key-value pairs, "a": "A" and "b": "B"?
  1. dict(a: A, b: B)
  2. dict([("a", "A"), ("b", "B")])
  3. dict({"a" = "A", "b" = "B"})

Try It

Personal information dictionary

Create a dictionary, my_info, with three key-value pairs. The keys should be "first name", "last name", and "age" with the values being corresponding information about yourself. Then, print my_info.

Citation/Attribution
Reuse and redistribution of this content in digital or print format:
  • 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 prior written permission.
  • This book uses the Creative Commons Attribution-NonCommercial-ShareAlike License, which means that you can reuse and modify the material only for noncommercial purposes, must attribute OpenStax, and must distribute any derivative works under the same license.
  • Any commercial printing of this textbook, including using a local or custom printer, must be approved by OpenStax, and proper citation provided.
  • OpenStax-copyrighted images, activities, assessments, and similar components of this book are subject to the same licensing – CC-BY-NC-SA. They can be used for noncommercial purposes with attribution. Commercial use requires permission.
  • Permission requests: Anyone who intends to incorporate this content (including text, images, and other components) into large language models, use it in AI offerings, use it commercially (including in print), and/or has questions about another use case is welcome to complete our reuse request form.
Attribution information
  • If you are redistributing all or part of this book in a noncommercial 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 noncommercial digital format, then for every page that includes OpenStax content, you must license the derivative work under the same CC-BY-NC-SA license as the original, and 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

The information below includes the information needed to generate citations in most major styles (APA, MLA, etc.); you must reformat and organize the information as needed to fit the requirements of the style. Use the information below to generate a citation. We recommend using a citation tool such as this one.

© Apr 23, 2026 OpenStax. Textbook content produced by OpenStax is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. The OpenStax name, OpenStax logo, OpenStax book covers, OpenStax CNX name, and OpenStax CNX logo, and Rice University name, and Rice University logo trademarks, or wordmarks 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.