I've been reading through https://wiki.python.org/moin/HandlingExceptions and https://docs.python.org/2/tutorial/errors.html, but I'm not completely clear on the following point:
Lets say I have:
b = true
try:
statement1
statement2
statement3
except:
b = false
I would like variable bool to remain true if the entire codeblock is executed without exception ( I don't want to classify the errors ) otherwise make it false. Will the code above do this?