OOP & Design Patterns - Decorator Pattern - Wrapping Behaviour Without Subclassing
Given the following Python code using the Decorator Pattern, what is the output of
print(coffee.description()) and print(coffee.cost()) after wrapping a SimpleCoffee with MilkDecorator (amount=2) and then SugarDecorator (amount=1)?