Misc Flashcards
1
Q
Namespace
A
Maps names to objects
Python dictionary whose keys are the names and values are the objects
2
Q
Nested Scope
A
Built-in Scope - built-in names of Python
Global Scope - globally defined names
Local scope - within currently executing function
3
Q
Error-checking code
A
Detects and handles errors
4
Q
Exception Handling
A
Special Python constructs that handle exceptional circumstances
Try and Except blocks