Files
30-seconds-of-code/python/snippets/clamp-number.md
2023-05-01 22:43:50 +03:00

452 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Clamp number snippet
math
highlands 2020-11-02T19:27:07+02:00

Clamps num within the inclusive range specified by the boundary values.

  • If num falls within the range (a, b), return num.
  • Otherwise, return the nearest number in the range.
def clamp_number(num, a, b):
  return max(min(num, max(a, b)), min(a, b))
clamp_number(2, 3, 5) # 3
clamp_number(1, -1, -5) # -1