What is finally statement in Python?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
finally
keyword is used in try…except blocks. It defines a block of code to run when the try…except…else block is final. Thefinally
block will be executed no matter if the try block raises an error or not.