Saved Bookmarks
| 1. |
Which of the following is false about “import modulename” form of import?(a) The namespace of imported module becomes part of importing module(b) This form of import prevents name clash(c) The namespace of imported module becomes available to importing module(d) The identifiers in module are accessed as: modulename.identifierThe question was posed to me in my homework.Query is from Python Modules in division Mapping Functions and Modules of Python |
|
Answer» Correct ANSWER is (a) The namespace of imported module BECOMES part of importing module |
|