Computer Science
What do you understand by standard library of Python ?
Python Libraries
4 Likes
Answer
Python standard library is distributed with Python that contains modules for various types of functionalities. Some commonly used modules of Python standard library are math module, random module, cmath module etc.
Answered By
2 Likes
Related Questions
What is dot notation of referring to objects inside a module ?
Why should the from <module> import <object> statement be avoided to import objects ?
Explain the difference between
import <module>
andfrom <module> import
statements, with examples.Create module tempConversion.py as given in Fig. 4.2 in the chapter. If you invoke the module with two different types of import statements, how would the function call statement for imported module's functions be affected ?