MulaiMulai sekarang secara gratis

Type hinting with custom classes

In this exercise, you'll use built-in type keywords, the typing library, and your own custom class to practice type hinting. List has been imported from the typing library. Time to get started!

Latihan ini adalah bagian dari kursus

Intermediate Object-Oriented Programming in Python

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Define an agent class with a constructor, add type hints
class Agent:
  def __init__(self, ____: ____, ____: ____):
    self.____: ____ = codename
    self.____: int  = ____
Edit dan Jalankan Kode