Python - Advanced Exception Handling
What does the
finally block do in a try-except-finally structure?finally block do in a try-except-finally structure?try and excepttry block runs code that might cause an error, and except runs only if an error happens.finally block behaviorfinally block always runs after try and except, no matter if an error occurred or not.finally always runs = A [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions