Saved Bookmarks
| 1. |
Define a namespace. Give examples of namespaces with respect to Python. |
|
Answer» A namespace is a mapping from names to objects. Examples of namespaces are built-in names, global names in a module and local names in the function invocation. |
|