Standard Library
Python comes with a set of built-in libraries called the standard library. These are ready to use — no installation needed, just import them.
Here are the three you’ll use most in this class:
| Library | What it does |
|---|---|
math | Math functions like square roots, rounding, and pi |
random | Generate random numbers, pick random items |
csv | Read and write CSV (spreadsheet-style) files |
Last updated on