CommencerCommencer gratuitement

Modifying dictionaries

Like lists, dictionaries can be changed. You can add new key:value pairs, update existing pairs, remove pairs. In this exercise, you'll explore creating and modifying dictionaries by creating the grocery list below.

  • 1 gallon of milk
  • 4 apples
  • 1 loaf of bread
  • 3 avocados
  • 2 candy bars

Cet exercice fait partie du cours

Python for MATLAB Users

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create dict with milk and apples
groceries = {____:____, 
             ____:____}

print(groceries)
Modifier et exécuter le code