Python 3 Deep Dive Part 4 Oop High Quality Today

class PaymentGateway(ABC): @abstractmethod def process_payment(self, amount): pass