Well...When I define a function that does not perform certain actions I don't understand what the difference between ...
and pass
. For example, the following two pieces of code:
def _clear() -> None: ...
def _clear() -> None: pass
They are the same, right? Either one can be used? I sincerely hope someone can help me thoroughly understand it. Thanks...