4.6. Using Python Standard Library
The Python standard library is a set of modules included with every Python installation. Now you have a basic understanding of how functions and classes work, you can start to use modules like these that other programmers have written. You can use any function or call in the standard library by including a simple import statement at the top of your file. Let's look at two modules, random and math which can be useful in modeling many real-world situations.
For the list of all built-in modules, you can see here.