>>> try: ... a = 10 ... except: ... b = 10 ... >>> a 10 >>> b Traceback (most recent call last): File "", line 1, in NameError: name 'b' is not defined