What is the correct order of execution for the blocks in a `try...except...else...finally` statement when no exception occurs within the `try` block?
-
A
`try` -> `except` -> `finally`
-
B
`try` -> `finally`
-
C
`try` -> `else` -> `finally`
-
D
`try` -> `else`