Python中有三种主要类型的模块。, 你自己编写的那些,你从外部源安装的,以及那些用Python预装的。
最后一种类型称为标准库。 包含许多有用的模块. 包括string, re, datetime, math, random, os, multiprocessing, subprocess, socket, email, json, doctest, unittest, pdb, argparse and sys.
标准库可以完成的任务包括字符串解析、数据序列化、测试、调试和操作日期、电子邮件、命令行参数等等。
Python广泛的标准库是它作为语言的主要优点之一。