How do you use the ellipsis slicing syntax in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:07:53Zhttp://stackoverflow.com/feeds/question/118370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118370/how-do-you-use-the-ellipsis-slicing-syntax-in-python16How do you use the ellipsis slicing syntax in Python?miracle2k2008-09-23T00:17:09Z2009-04-25T03:44:51Z
<p>This came up in <a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a>, but I can't seem good documentation or examples that explain how the feature works.</p>
http://stackoverflow.com/questions/118370/how-do-you-use-the-ellipsis-slicing-syntax-in-python/118395#11839512Answer by nosklo for How do you use the ellipsis slicing syntax in Python?nosklo2008-09-23T00:24:21Z2009-04-25T03:44:51Z<p>You'd use it in your own class, since no builtin class makes use of it.</p>
<p>Numpy uses it, as stated in the <a href="http://www.scipy.org/Tentative%5FNumPy%5FTutorial#line-487" rel="nofollow">documentation</a>. Some examples <a href="http://www.scipy.org/Numpy%5FExample%5FList%5FWith%5FDoc#head-490d781b49b68b300eedaef32369fae7d58627fb" rel="nofollow">here</a>.</p>
<p>In your own class, you'd use it like this:</p>
<pre><code>>>> class TestEllipsis(object):
... def __getitem__(self, item):
... if item is Ellipsis:
... return "Returning all items"
... else:
... return "return %r items" % item
...
>>> x = TestEllipsis()
>>> print x[2]
return 2 items
>>> print x[...]
Returning all items
</code></pre>
<p>Of course, there is the <a href="http://docs.python.org/lib/bltin-ellipsis-object.html" rel="nofollow" title="Ellipsis">python documentation</a>, and <a href="http://docs.python.org/ref/slicings.html" rel="nofollow">language reference</a>. But those aren't very helpful. </p>
http://stackoverflow.com/questions/118370/how-do-you-use-the-ellipsis-slicing-syntax-in-python/118508#11850821Answer by Torsten Marek for How do you use the ellipsis slicing syntax in Python?Torsten Marek2008-09-23T00:55:09Z2008-10-21T15:50:14Z<p>The ellipsis is used to slice higher-dimensional data structures. </p>
<p>It's designed to mean <em>at this point, insert as many full slices (<code>:</code>) to extend the multi-dimensional slice to all dimensions</em>.</p>
<p><strong>Example</strong>:</p>
<pre><code>>>> from numpy import arange
>>> a = arange(16).reshape(2,2,2,2)
</code></pre>
<p>Now, you have a 4-dimensional matrix of order 2x2x2x2. To select all first elements in the 4th dimension, you can use the ellipsis notation</p>
<pre><code>>>> a[..., 0].flatten()
array([ 0, 2, 4, 6, 8, 10, 12, 14])
</code></pre>
<p>which is equivalent to</p>
<pre><code>>>> a[:,:,:,0].flatten()
array([ 0, 2, 4, 6, 8, 10, 12, 14])
</code></pre>
<p>In your own implementations, you're free to ignore the contract mentioned above and use it for whatever you see fit.</p>
http://stackoverflow.com/questions/118370/how-do-you-use-the-ellipsis-slicing-syntax-in-python/120055#1200557Answer by ΤΖΩΤΖΙΟΥ for How do you use the ellipsis slicing syntax in Python?ΤΖΩΤΖΙΟΥ2008-09-23T09:34:48Z2008-09-23T09:34:48Z<p>This is another use for Ellipsis, which has nothing to do with slices: I often use it in intra-thread communication with queues, as a mark that signals "Done"; it's there, it's an object, it's a singleton, and its name means "lack of", and it's not the overused None (which could be put in a queue as part of normal data flow). YMMV.</p>