The Single Responsibility Principle means a method should have one reason to change, focusing on a single task. In an e-commerce setting, a method named `calculateShippingCost` should only calculate shipping, not apply discounts or process payments.
Additional Notes
How does the Single Responsibility Principle apply to methods?