LoslegenKostenlos loslegen

Motivation for dictionaries

To see why dictionaries are useful, have a look at the two lists defined in the script. countries contains the names of some European countries. capitals lists the corresponding names of their capital.

Diese Übung ist Teil des Kurses

Intermediate Python

Kurs anzeigen

Anleitung zur Übung

  • Use the index() method on countries to find the index of 'germany'. Store this index as ind_ger.
  • Use ind_ger to access the capital of Germany from the capitals list. Print it out.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Definition of countries and capital
countries = ['spain', 'france', 'germany', 'norway']
capitals = ['madrid', 'paris', 'berlin', 'oslo']

# Get index of 'germany': ind_ger


# Use ind_ger to print out capital of Germany
Code bearbeiten und ausführen