Report Bug
Qus : Which of the following is false about “from ….. import …… " form of import?
Qusनिम्नलिखित में से कौन सा आयात के "from ….. import …… " रूप के बारे में गलत है?

A. The syntax is: from module name import identifier
B. This form of import does not import anything
C. The namespace of imported module becomes part of importing module
D. The identifiers in module are accessed directly as: identifier


Solution
D. The identifiers in module are accessed directly as: identifier






Report Bug