### Current problem Some Python users may be unaware that the `min` and `max` functions allow for more than two arguments. ### Desired solution Expressions of the form: `min(a, min(b, min(c, d))` can be replaced with the simpler `x = min(a, b, c, d)`. ### Additional context _No response_