5. Dictionary Comprehension

Quiz: 0/5

A dictionary comprehension is a shorter, easier way to create a dictionary from an iterable (like a list or a tuple). It allows you to quickly create a dictionary with key-value pairs.

The basic syntax looks like this:

{key: value for key, value in iterable}
  • key: value represents the key-value pair you want in your dictionary.
  • iterable is the thing you're looping through (like a list or a tuple).

Example: Creating a dictionary from a list of tuples

Let's say you have a list of tuples like this:

pairs = [("apple", 3), ("banana", 5), ("cherry", 2)]

You can use dictionary comprehension to convert this list into a dictionary:

fruit_dict = {fruit: count for fruit, count in pairs}
print(fruit_dict)

Output:

{'apple': 3, 'banana': 5, 'cherry': 2}

Here, the fruit becomes the key, and the count becomes the value for each item in the list.

Set comprehension

A set comprehension works similarly to dictionary comprehension, but it creates a set instead of a dictionary. A set is just a collection of unique items, without key-value pairs.

The syntax for a set comprehension looks like this:

{expression for item in iterable}
  • expression is what you want to put in the set.
  • iterable is the thing you're looping through.

Example: Creating a set from a list

Let's say you have a list of numbers and you want to create a set of squared values:

numbers = [1, 2, 3, 4, 2, 3]
squares = {num ** 2 for num in numbers}
print(squares)

Output:

{1, 4, 9, 16}

Notice that the set only includes unique values, so even though 2 and 3 appeared twice in the original list, their squared values only appear once in the set.

Summary:

  • Dictionary comprehension creates a dictionary with key-value pairs from an iterable.
  • Set comprehension creates a set (a collection of unique values) from an iterable.

Both are useful for writing cleaner, more efficient code!

Hands-On Practise

Exercise: Dictionary and Set Comprehension

Given the following list of tuples representing fruit names and their prices:

fruit_prices = [("apple", 2), ("banana", 1), ("cherry", 3), ("apple", 2), ("banana", 1)]
  1. Dictionary Comprehension: Create a dictionary that stores the fruit names as keys and their prices as values. Ensure that each fruit appears only once in the dictionary (you can use the last price for each fruit).

  2. Set Comprehension: Create a set of unique fruit prices from the fruit_prices list.

Expected Output:

  • The dictionary should look like this:

    {'apple': 2, 'banana': 1, 'cherry': 3}
    
  • The set should look like this:

    {1, 2, 3}
    
Output:

Quizzes: 0/5

Question 1:

What does dictionary comprehension in Python allow you to create?

  • A list of items
  • A set of unique items
  • A dictionary with key-value pairs
  • A string of concatenated values

Question 2:

How does set comprehension differ from dictionary comprehension?

  • Set comprehension creates key-value pairs, while dictionary comprehension creates only values.
  • Set comprehension creates a set of unique items, while dictionary comprehension creates key-value pairs.
  • Set comprehension uses a different loop, while dictionary comprehension does not.
  • There is no difference; both create dictionaries.

Question 3:

What will the result be when using dictionary comprehension on a list of tuples with duplicate keys?

  • An error will occur
  • Only the last value for each key will be kept
  • All values for each key will be kept
  • The dictionary will be empty

Question 4:

Which of the following is a correct syntax for creating a set from a list using set comprehension?

  • {key: value for item in iterable}
  • {expression for item in iterable}
  • [expression for item in iterable]
  • {item for item in iterable}

Question 5:

What is the output of this set comprehension: {x ** 2 for x in [1, 2, 3, 3, 2]}?

  • {1, 4, 9}
  • {1, 4, 9, 16}
  • {1, 2, 3}
  • {1, 2, 4, 9}

Feedback

Share your thoughts about this lesson

Loading...
Previous lessonAdvanced techniques in list comprehensionNext lessonComparing List Comprehension vs. map() and filter()