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 = 7try:raise Exception()except Exception as e:passprint(e)
⚠️ The following code is meant for Python 3.x versions.
Press + to interact
e = 7try:raise Exception()except Exception as e:passprint(e)
...