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: identifierThe question was asked in semester exam.This interesting question is from Python Modules topic in section Mapping Functions and Modules of Python |
|
Answer» The correct answer is (B) This form of import prevents name clash |
|