In Python, docstrings can be used in methods just like functions, but they belong to a **class** and describe how the method works within that class.
### Example:
```python
class Calculator:
"""A simple calculator class."""
def add(self, a, b):
"""
Adds two numbers and...