In C# and in Java (and possibly other languages as well), variables declared in a \"try\" block are not in scope in the corresponding \"catch\" or \"finally\" blocks. For e
In Python they are visible in the catch/finally blocks if the line declaring them didn't throw.