CBSE Class 12 Computer Science
Question 20 of 62
Using Python Libraries — Question 5
Back to all questionsfrom <module> import <object>
from <module> import *
Reason —
from <module> import <object>— This syntax is used to import a specific object from a module into the current namespace.from <module> import *— This syntax is used to import all objects from the module into the current namespace.