I just learned that I can use `...` as placeholder for unfinished code instead of `pass` in #python
`...` is a built-n object, and it's called the *Ellipsis*
Example: Instead of
def func():
pass
one could use the ellipsis like
def func():
...
I just learned that I can use `...` as placeholder for unfinished code instead of `pass` in #python
`...` is a built-n object, and it's called the *Ellipsis*
Example: Instead of
def func():
pass
one could use the ellipsis like
def func():
...