BaşlayınÜcretsiz Başlayın

Using docstring

You've developed the MortgageCalculator class. Now, complete a docstring to provide explanations for the class's attributes.

Bu egzersiz

Case Study: Building Software in Python

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • For the months attribute, add the number of months in the loan.
  • For the monthly_payment attribute, add the amount of the payment per month.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

class MortgageCalculator(FinancialCalculator):

  """
  A class used to represent a mortgage calculator.

  Attributes
  -------
  months: ____.
  monthly_payment: ____.
  """
  # Code omitted for space
Kodu Düzenle ve Çalıştır