KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

We cannot give any other name to Python libraries when we import them.

Python Modules

1 Like

Answer

False

Reason — In Python, we can give another name to a library/module while importing it using the as keyword. This new name is called an alias. An alias is just a short/alternate name used only inside that program to make code easier to write and read (it does not change the actual library name).

Answered By

1 Like


Related Questions