LoslegenKostenlos loslegen

Creating a Manufacturing Company

In the final exercise of this lesson, you'll create an updated version of the Company abstract base class before creating a Manufacturing company. The ABC class and abstractmethod decorators have been imported from abc for you. Good luck!

Diese Übung ist Teil des Kurses

Intermediate Object-Oriented Programming in Python

Kurs anzeigen

Interaktive Übung

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

# Define a Company abstract base class with a pay_taxes() method
____ ____(____):
  ____
  ____ ____(self):
    pass
  
  def report_revenue(self):
    print(f"{self.name} is reporting ${self.revenue} of revenue")
Code bearbeiten und ausführen