As we have a one day's break from the Python functions series which returns with Day 10 tomorrow, let's look back the the topic from the last three days:
• positional-only arguments using / in function definitions • keyword-only arguments using * in function definitions
Maybe you use NumPy a lot? Positional-only and keyword-only arguments appear very often in the NumPy codebase
Here's just one example, NumPy's `mean()` method:
a.mean(axis=None, dtype=None, out=None, keepdims=False, *, where=True)
/8