It has always seemed strange to me that random.randint(a, b) would return an integer in the range [a, b], instead of [a, b-1] like range(...).
Is there any reason for this apparent inconsistency?
|
feedback
|
|
I tried to get to the bottom of this by examining some old sources. I suspected that However, looking as far back as even the Python 1.5.2 sources, in
Also,
The only available source older than that is the 0.9.1 source, and as far as I can tell, Thus, I conclude that the reasoning for | |||||||||
feedback
|
|
I guess
You can use On the other hand, in many situations where the problem is phrased as 'choose a random number between 1 and 6' it might be more natural to use | ||||
|
feedback
|
|
I don't think there's a reason for that. But at least it's documented. | |||
feedback
|
|
This is speculation, but normal human usage of 'give me a random number from a to b' is inclusive. Implementing it that way sort of makes sense, given Python's general philosophy of being a more human-readable language. | |||
|
feedback
|
randrange. – KennyTM Apr 2 '10 at 19:40