+ 1
It's ususally used during development. If you still need to write code, but want to do it at a later time, you can tell the interpreter to pass it (= no error).
For example you could write
def amazing_function(x):
#code body later
pass
Here you need pass, because otherwise you will get an error since your function does not have a body.



