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
Have you ever used `list.sort()` with the `key` or `reverse` parameters?
I bet you have!
Here's the signature for `list.sort()`
sort(self, /, *, key=None, reverse=False)
/3