ComenzarEmpieza gratis

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

Este ejercicio forma parte del curso

Python for MATLAB Users

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

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

print(groceries)
Editar y ejecutar código