...

/

The Disappearing Variable From Outer Scope

The Disappearing Variable From Outer Scope

We'll cover the following...

Can Python make a variable vanish? Some might think so.

⚠️ The following code is meant for Python 2.x versions.

Press + to interact
e = 7
try:
raise Exception()
except Exception as e:
pass
print(e)

⚠️ The following code is meant for Python 3.x versions.

Press + to interact
e = 7
try:
raise Exception()
except Exception as e:
pass
print(e)
...