limit number max min python code example Example: python maths max value capped at x def clamp(n, minn, maxn): return max(min(maxn, n), minn)