+ 1
Finally before Except
The below code does not even print Hello; it ends with a syntax error. While compiling, doesn't the compiler consider finally at the end of the program, no matter where it is mentioned? try: print("Hello") print(1 / 0) finally: print("This code will run no matter what") except ZeroDivisionError: print("Divided by zero")
4 ответов
+ 2
you are slightly wrong... finally or except block wont work without try block... in your code.. except block is creating the syntax error not finally block
+ 1
i think exception should be before finally
+ 1
python considers finally as the end of the exception block not the end of the program... In your program finally block is stating the end of the try block so later except block is present without any try block which is a syntax error as except block can't be present without try block... hope that answers
+ 1
Thanks Harihara. So, if I now understand it correctly, finally would never work without a try/except.