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
Diese Übung ist Teil des Kurses
Python for MATLAB Users
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Create dict with milk and apples
groceries = {____:____,
____:____}
print(groceries)