Brief Tour of the Standard Library I

17 Dec 2019

Notes on Chapter 10 of the Python Tutorial (3.7.5), Brief Tour of the Standard Library, Part I.

I’ve already used the following modules from the standard library by completing through half of Chapter 16 of Automate the Boring Stuff with Python:

That’s nineteen modules so far - and I might have used a few more when working through other tutorials, etc.

By going through this section, I’m looking forward to:

  1. Learn about modules I haven’t encountered yet
  2. Learn more about modules I have used before, and
  3. Learn more about the history, structure and future prospects for the standard library

New (to me) modules:

argparse

doctest

glob

statistics

timeit

unittest

urllib.request

zlib

Modules I’d used before:

os

random

re

shutil

sys

History, structure & future prospects of the Python standard library: