Advertisement
YTMango

var in try...expcet...

Nov 8th, 2022
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | Source Code | 0 0
  1. >>> try:
  2. ...     a = 10
  3. ... except:
  4. ...     b = 10
  5. ...
  6. >>> a
  7. 10
  8. >>> b
  9. Traceback (most recent call last):
  10.   File "<stdin>", line 1, in <module>
  11. NameError: name 'b' is not defined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement