diff --git a/files-and-exceptions/exceptions.py b/files-and-exceptions/exceptions.py index c82a04e..035676c 100644 --- a/files-and-exceptions/exceptions.py +++ b/files-and-exceptions/exceptions.py @@ -61,4 +61,5 @@ # print(5 / 0) # except ZeroDivisionError: # pass -#The pass statement tells Python to do nothing in the block. \ No newline at end of file +#The pass statement tells Python to do nothing in the block. +#The pass statement also acts as a placeholder. It tells you that you decided to do nothing at a specific point in your program and that you might want to do something there later.