OOP & Design Patterns - Template Method Pattern - Define Skeleton, Override Steps
Consider the following Python code using the Template Method Pattern with a hook method
wants_sugar() that returns False in the subclass. What is the exact output when calling Tea().prepare()?