<p dir="ltr"><br>
> def clamp(x, min, max):<br>
>         if x < min:<br>
>            return min<br>
>         elif x > max:<br>
>            return max<br>
>         else:<br>
>            return x</p>
<p dir="ltr">Si potrebbe disquisire un po' sull'opportunità di togliere else/elif :) <br>
</p>