ComeçarComece de graça

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 exercício faz parte do curso

Python for MATLAB Users

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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

print(groceries)
Editar e executar o código