Hello

try:
    a = 1 / 0
except ZeroDivisionError as ex:
   pass

ex
Traceback (most recent call last):
 File "<pyshell#49>", line 1, in <module>
   ex
NameError: name 'ex' is not defined


Why variable ex doesn't exist ?
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to