Report Bug
Qus : Which operator is used in Python to import modules from packages?
Qusपैकेज से मॉड्यूल आयात करने के लिए पायथन में किस ऑपरेटर का उपयोग किया जाता है?

A. .
B. *
C. ->
D. &


Solution
A. .



Explanation

In Python, the import statement is used to import modules from packages. The dot (.) operator is used to reference modules within a package. Here's a basic explanation:


Let's say you have a package named mypackage with a module named mymodule. You can import mymodule in your Python script or another module using the import statement:

Example:


import mypackage.mymodule


If you want to import all items from a module or package, you can use the * wildcard:



Report Bug