Or maybe you use Matplotlib? Here's `plt.scatter()`
Wait for it
scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, *, edgecolors=None, plotnonfinite=False, data=None, **kwargs)
Did you spot the lone * ?
/9
They're easy to miss and ignore. But if you've read documentation, you will definitely have seen a * or a / in many function signatures
Now, when you see them next, you'll know perfectly well what they are and what they do
/10