Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. (Pdb) c
  2. (Pdb) pp locals()['a']
  3. *** KeyError: 'a'
  4. (Pdb) !a=2
  5. (Pdb) pp locals()['a']
  6. 2
  7. (Pdb) !del a
  8. (Pdb) pp locals()['a']
  9. *** KeyError: 'a'
  10. (Pdb) interact
  11. *interactive*
  12. >>> a=2
  13. >>>
  14. now exiting InteractiveConsole...
  15. (Pdb) pp locals()['a']
  16. *** KeyError: 'a'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement