I was wondering if there is (or is not) a reason to call return
after a function is done but no value is expected to be returned. Is there a best practice or does it just not matter?
For example:
def print_something(arg):
print(arg)
return
The last instruction return
of function print_something
. Should it be there or should it not? Does it just add unessecary instructions to executed application? Or is there just no point in thinking about it?