<p dir="ltr"><br>
On 2 Feb 2015 21:00, "Chris Angelico" <<a href="mailto:rosuav@gmail.com">rosuav@gmail.com</a>> wrote:<br>
><br>
> On Mon, Feb 2, 2015 at 9:26 PM, Todd <<a href="mailto:toddrjen@gmail.com">toddrjen@gmail.com</a>> wrote:<br>
> > First, it wouldn't be a replacement.  The existing range syntax would still<br>
> > exist.<br>
> ><br>
> > But the reason it is beneficial is the same reason we have [a, b, c] for<br>
> > list, {a:1, b:2, c:3} for dicts, {a, b, c} for sets, and (a, b, c) for<br>
> > tuples.  It is more compact way to create a commonly-used data structure.<br>
> ><br>
> > And I wouldn't consider it any more cryptic than any other literal we have.<br>
><br>
> Considering the single most common use of ranges, let's see how a for<br>
> loop would look:<br>
><br>
> for i in 1:10:<br>
>     pass<br>
><br>
> Is that nastily cryptic, or beautifully clean? I'm inclined toward the<br>
> former, but could be persuaded.</p>
<p dir="ltr">Some additional historical context, found while looking for range literal notations in other languages: PEP 204 is a previously rejected proposal for range literals (<a href="https://www.python.org/dev/peps/pep-0204/">https://www.python.org/dev/peps/pep-0204/</a>)</p>
<p dir="ltr">If you'd like to propose a range literal, you may be better off steering clear of slice notation and instead look to other languages like Ruby or Haskell for inspiration (slice notation may still be useful for appending a step to the range definition).</p>
<p dir="ltr">Such an idea will likely still be rejected in the absence of compelling use cases though, especially as direct iteration over a container or using the enumerate builtin is often going to be superior to creating a range object. That makes it very difficult to justify the cost of invalidating all of the existing documentation on how to create ranges in Python.</p>
<p dir="ltr">Regards,<br>
Nick.<br></p>
<p dir="ltr">><br>
> ChrisA<br>
> _______________________________________________<br>
> Python-ideas mailing list<br>
> <a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
> <a href="https://mail.python.org/mailman/listinfo/python-ideas">https://mail.python.org/mailman/listinfo/python-ideas</a><br>
> Code of Conduct: <a href="http://python.org/psf/codeofconduct/">http://python.org/psf/codeofconduct/</a><br>
</p>