LoslegenKostenlos loslegen

Get data out

In this exercise, you're going to practice exploring dictionaries and retrieving data stored in a simple dictionary. The dictionary avocados is loaded into your workspace, which includes information about a single purchase of avocados.

The dictionary has the following keys:

  • variety is the variety of avocado purchased.
  • count is the number of avocados purchased.
  • price_each is the price per avocado, in USD.
  • organic indicates whether or not these are organic avocados.
  • date is the date of this purchase.

Let's use these keys to learn more about this transaction.

Diese Übung ist Teil des Kurses

Python for MATLAB Users

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Print the value for 'variety'
print(avocados[____])
Code bearbeiten und ausführen