In the manual, we read:
Functions with keyword arguments have near-zero overhead for call sites that pass only positional arguments.
Does this mean that functions with keyword arguments are as fast as functions without keyword arguments as long as they don’t use any keyword arguments? Or that keyword arguments don’t affect performance if there are no optional arguments?
An example might help me understand this…