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
How about `str.replace()`? You've used that too?
Here's the signature:
replace(self, old, new, count=-1, /)
`old`, `new`, and `count` are all positional-only
/6