Saved Bookmarks
| 1. |
Which of the following is not a valid namespace?(a) Global namespace(b) Public namespace(c) Built-in namespace(d) Local namespaceI got this question in unit test.The query is from Python Modules topic in section Mapping Functions and Modules of Python |
|
Answer» RIGHT ANSWER is (b) Public namespace Easy explanation - During a PYTHON program execution, there are as many as THREE namespaces – built-in namespace, global namespace and LOCAL namespace. |
|