Search notes:

Python type: Ellipsis

The Ellipsis type has one single value which has two representations: ... and Ellipsis.
Why lower and uppercase?
>>> type(Ellipsis)
<class 'ellipsis'>
... is also an ellipsis:
>>> type(...)
<class 'ellipsis'>

See also

Other Built-in types

Index