Spot the default-parameter error: a teammate says the expression used as a parameter default is evaluated anew every time the caller omits that argument. What is the correction?
Explanation
The default expression is evaluated when Python executes the def statement, and that resulting value is retained for omitted arguments. Recomputing it on every call would describe different behavior from Python's parameter defaults.