Python Programming/Standard Library
Appearance
From Wikibooks, open books for an open world
This is the current revision of this page, as edited by MathXplore (discuss | contribs) at 16:40, 19 January 2023 (Reverted 1 edit by 2406:B400:D5:98D0:54F5:C497:8A58:755B (talk): Unexplained content removal (TwinkleGlobal)). The present address (URL) is a permanent link to this version.
Revision as of 16:40, 19 January 2023 by MathXplore (discuss | contribs) (Reverted 1 edit by 2406:B400:D5:98D0:54F5:C497:8A58:755B (talk): Unexplained content removal (TwinkleGlobal))
The Python Standard Library is a collection of script modules accessible to a Python program to simplify the programming process and removing the need to rewrite commonly used commands. They can be used by 'calling/importing' them at the beginning of a script.
A list of the Standard Library modules can be found at http://www.python.org/doc/.
The following are among the most important:
- time
- sys
- os
- math
- random
- pickle
- urllib
- re
- cgi
- socket