Ellipsis
We'll cover the following...
We'll cover the following...
Ellipses are pointless…because they have curves.
Python 3.5
def some_func():Ellipsisprint("Calling some_func")some_func()print(Ellipsis)SomeRandomString # Shoulld throw error
Explanation
In Python, Ellipsis is a globally available built-in object which is equivalent to ....
Python 3.5
print(...)
Ellipsiscan be used for several purposes, such as: