Ellipsis

We'll cover the following...

Ellipses are pointless…because they have curves.

Press + to interact
def some_func():
Ellipsis
print("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 ....

Press + to interact
print(...)
  • Ellipsis can be used for
...
...