Je veux limiter un nombre pour qu'il soit dans une certaine fourchette. Actuellement, je fais ce qui suit :
minN = 1
maxN = 10
n = something() #some return value from a function
n = max(minN, n)
n = min(maxN, n)
Cela lui permet de rester dans minN
y maxN
mais ça n'a pas l'air très joli. Comment pourrais-je l'améliorer ?
PS : Pour information, j'utilise Python 2.6.