Report Bug
Qus : To use a module in another module, you must import it using an, statement
Qusअन्य मॉड्यूल में किसी मॉड्यूल का उपयोग करने के लिए, आपको उस स्टेटमेंट का उपयोग करके इम्पोर्ट करना होगा

A. import
B. include
C. both (A) and (B)
D. none of the above


Solution
A. import



Explanation

In Python, to use a module in another module, you must import it using the import statement. The import statement allows you to bring in functionalities defined in one module into another so that you can use them.




Report Bug