How do you use the ellipsis slicing syntax in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:07:53Z http://stackoverflow.com/feeds/question/118370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118370/how-do-you-use-the-ellipsis-slicing-syntax-in-python 16 How do you use the ellipsis slicing syntax in Python? miracle2k 2008-09-23T00:17:09Z 2009-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#118395 12 Answer by nosklo for How do you use the ellipsis slicing syntax in Python? nosklo 2008-09-23T00:24:21Z 2009-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>&gt;&gt;&gt; class TestEllipsis(object): ... def __getitem__(self, item): ... if item is Ellipsis: ... return "Returning all items" ... else: ... return "return %r items" % item ... &gt;&gt;&gt; x = TestEllipsis() &gt;&gt;&gt; print x[2] return 2 items &gt;&gt;&gt; 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#118508 21 Answer by Torsten Marek for How do you use the ellipsis slicing syntax in Python? Torsten Marek 2008-09-23T00:55:09Z 2008-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>&gt;&gt;&gt; from numpy import arange &gt;&gt;&gt; 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>&gt;&gt;&gt; a[..., 0].flatten() array([ 0, 2, 4, 6, 8, 10, 12, 14]) </code></pre> <p>which is equivalent to</p> <pre><code>&gt;&gt;&gt; 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#120055 7 Answer by ΤΖΩΤΖΙΟΥ for How do you use the ellipsis slicing syntax in Python? ΤΖΩΤΖΙΟΥ 2008-09-23T09:34:48Z 2008-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>