CBSE Class 12 Computer Science
Question 3 of 62
Using Python Libraries — Question 3
Back to all questions(a)
Both Assertion and Reason are true and Reason is the correct explanation of Assertion.
Explanation
The from <module> import <item> command directly imports the specified item into the current namespace. This means that the imported item becomes part of the program's namespace and can be accessed directly without using the module name.