LoslegenKostenlos loslegen

Using the Typing library

The typing library helps when adding type hints to objects such as dictionaries and lists, as well as the elements in those objects. In this exercise, you'll practice exactly that. Go get 'em!

Diese Übung ist Teil des Kurses

Intermediate Object-Oriented Programming in Python

Kurs anzeigen

Anleitung zur Übung

  • From the typing library, import Dict and List.
  • Using a class imported from typing, add type hints to the roster dictionary to include details about the types of keys and values.
  • Update the creation of the agents list to add type hints for both the object itself, as well as the type of the elements it stores.

Interaktive Übung

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

# Import Dict and List from typing
from ____ import ____, ____

# Type hint the roster of codenames and number of missions
roster: ____[____, ____] = {
  "Chuck": 37,
  "Devin": 2,
  "Steven": 4
}

# Unpack the values and add type hints for the new list
agents: ____[____] = [
  f"Agent {agent}, {missions} missions" \
  for agent, missions in roster.items()
]
Code bearbeiten und ausführen