CBSE Class 12 Computer Science Question 29 of 62

Using Python Libraries — Question 3

Back to all questions
3
Question

Question 3

The import <module> statement imports everything in the current namespace of the Python program.

Answer

False

Reason — The import <module> statement imports entire module but it creates a new namespace with the same name as that of the module.