This came up in Hidden features of Python, but I can't seem good documentation or examples that explain how the feature works.
|
|
You'd use it in your own class, since no builtin class makes use of it. Numpy uses it, as stated in the documentation. Some examples here. In your own class, you'd use it like this:
Of course, there is the python documentation, and language reference. But those aren't very helpful. |
|||
|
|
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. |
||||||||
|
|
|
The ellipsis is used to slice higher-dimensional data structures. It's designed to mean at this point, insert as many full slices ( Example:
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
which is equivalent to
In your own implementations, you're free to ignore the contract mentioned above and use it for whatever you see fit. |
|||
|
|
