474 B
474 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Clamp number | snippet | python |
|
colorful-rocks | 2020-11-02T19:27:07+02:00 |
Clamps num within the inclusive range specified by the boundary values.
- If
numfalls within the range (a,b), returnnum. - 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