Re: [Python-Dev] Inclusive Range

2010-10-04 Thread Xavier Morel
On 2010-10-04, at 05:04 , Eviatar Bach wrote: Hello, I have a proposal of making the range() function inclusive; that is, range(3) would generate 0, 1, 2, and 3, as opposed to 0, 1, and 2. Not only is it more intuitive, it also seems to be used often, with coders often writing range(0,

[Python-Dev] Inclusive Range

2010-10-03 Thread Eviatar Bach
Hello, I have a proposal of making the range() function inclusive; that is, range(3) would generate 0, 1, 2, and 3, as opposed to 0, 1, and 2. Not only is it more intuitive, it also seems to be used often, with coders often writing range(0, example+1) to get the intended result. It would be easy

Re: [Python-Dev] Inclusive Range

2010-10-03 Thread Benjamin Peterson
2010/10/3 Eviatar Bach eviatarb...@gmail.com: Hello, I have a proposal See the python-ideas mailing list. of making the range() function inclusive; that is, range(3) would generate 0, 1, 2, and 3, as opposed to 0, 1, and 2. Not only is it more intuitive, it also seems to be used often,

Re: [Python-Dev] Inclusive Range

2010-10-03 Thread Cameron Simpson
On 03Oct2010 20:04, Eviatar Bach eviatarb...@gmail.com wrote: | I have a proposal of making the range() function inclusive; that is, | range(3) would generate 0, 1, 2, and 3, as opposed to 0, 1, and 2. Not only | is it more intuitive, it also seems to be used often, with coders often | writing