The statements inside the ............ block are always executed regardless of whether an exception occurred in the ................. block. What will be the appropriate clause in the above statement respectively?
Show Hint
The "finally" block in Python will always execute, whether or not an exception occurs, and it is typically used for cleanup code.
In Python, the "finally" block always executes, regardless of whether an exception occurs or not. The "try" block is used for code that might raise an exception. Hence, the correct order is "finally" followed by "try".