MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is false about “from-import†form of import? |
| A. | the syntax is: from modulename import identifier |
| B. | this form of import prevents name clash |
| C. | the namespace of imported module becomes part of importing module |
| D. | the identifiers in module are accessed directly as: identifier |
| Answer» C. the namespace of imported module becomes part of importing module | |