René's URL Explorer Experiment


Title: 11. Brief tour of the standard library — part II — Python 3.16.0a0 documentation

Open Graph Title: 11. Brief tour of the standard library — part II

Description: This second tour covers more advanced modules that support professional programming needs. These modules rarely occur in small scripts. Output formatting: The reprlib module provides a version of r...

Open Graph Description: This second tour covers more advanced modules that support professional programming needs. These modules rarely occur in small scripts. Output formatting: The reprlib module provides a version of r...

Opengraph URL: https://docs.python.org/3/tutorial/stdlib2.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.16/_images/social_previews/summary_tutorial_stdlib2_40a7be08.png
og:image:altThis second tour covers more advanced modules that support professional programming needs. These modules rarely occur in small scripts. Output formatting: The reprlib module provides a version of r...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/3.16/contents.html
11. Brief tour of the standard library — part IIhttps://docs.python.org/3.16/tutorial/stdlib2.html
11.1. Output formattinghttps://docs.python.org/3.16/tutorial/stdlib2.html#output-formatting
11.2. Templatinghttps://docs.python.org/3.16/tutorial/stdlib2.html#templating
11.3. Working with binary data record layoutshttps://docs.python.org/3.16/tutorial/stdlib2.html#working-with-binary-data-record-layouts
11.4. Multi-threadinghttps://docs.python.org/3.16/tutorial/stdlib2.html#multi-threading
11.5. Logginghttps://docs.python.org/3.16/tutorial/stdlib2.html#logging
11.6. Weak referenceshttps://docs.python.org/3.16/tutorial/stdlib2.html#weak-references
11.7. Tools for working with listshttps://docs.python.org/3.16/tutorial/stdlib2.html#tools-for-working-with-lists
11.8. Decimal floating-point arithmetichttps://docs.python.org/3.16/tutorial/stdlib2.html#decimal-floating-point-arithmetic
10. Brief tour of the standard libraryhttps://docs.python.org/3.16/tutorial/stdlib.html
12. Virtual Environments and Packageshttps://docs.python.org/3.16/tutorial/venv.html
Report a bughttps://docs.python.org/3.16/bugs.html
Improve this pagehttps://docs.python.org/3.16/improve-page-nojs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/stdlib2.rst?plain=1
indexhttps://docs.python.org/3.16/genindex.html
moduleshttps://docs.python.org/3.16/py-modindex.html
nexthttps://docs.python.org/3.16/tutorial/venv.html
previoushttps://docs.python.org/3.16/tutorial/stdlib.html
Pythonhttps://www.python.org/
3.16.0a0 Documentationhttps://docs.python.org/3.16/index.html
The Python Tutorialhttps://docs.python.org/3.16/tutorial/index.html
11. Brief tour of the standard library — part IIhttps://docs.python.org/3.16/tutorial/stdlib2.html
https://docs.python.org/3.16/tutorial/stdlib2.html#brief-tour-of-the-standard-library-part-ii
https://docs.python.org/3.16/tutorial/stdlib2.html#output-formatting
reprlibhttps://docs.python.org/3.16/library/reprlib.html#module-reprlib
repr()https://docs.python.org/3.16/library/functions.html#repr
pprinthttps://docs.python.org/3.16/library/pprint.html#module-pprint
textwraphttps://docs.python.org/3.16/library/textwrap.html#module-textwrap
localehttps://docs.python.org/3.16/library/locale.html#module-locale
https://docs.python.org/3.16/tutorial/stdlib2.html#templating
stringhttps://docs.python.org/3.16/library/string.html#module-string
Templatehttps://docs.python.org/3.16/library/string.html#string.Template
substitute()https://docs.python.org/3.16/library/string.html#string.Template.substitute
KeyErrorhttps://docs.python.org/3.16/library/exceptions.html#KeyError
safe_substitute()https://docs.python.org/3.16/library/string.html#string.Template.safe_substitute
https://docs.python.org/3.16/tutorial/stdlib2.html#working-with-binary-data-record-layouts
structhttps://docs.python.org/3.16/library/struct.html#module-struct
pack()https://docs.python.org/3.16/library/struct.html#struct.pack
unpack()https://docs.python.org/3.16/library/struct.html#struct.unpack
zipfilehttps://docs.python.org/3.16/library/zipfile.html#module-zipfile
https://docs.python.org/3.16/tutorial/stdlib2.html#multi-threading
threadinghttps://docs.python.org/3.16/library/threading.html#module-threading
queuehttps://docs.python.org/3.16/library/queue.html#module-queue
Queuehttps://docs.python.org/3.16/library/queue.html#queue.Queue
https://docs.python.org/3.16/tutorial/stdlib2.html#logging
logginghttps://docs.python.org/3.16/library/logging.html#module-logging
DEBUGhttps://docs.python.org/3.16/library/logging.html#logging.DEBUG
INFOhttps://docs.python.org/3.16/library/logging.html#logging.INFO
WARNINGhttps://docs.python.org/3.16/library/logging.html#logging.WARNING
ERRORhttps://docs.python.org/3.16/library/logging.html#logging.ERROR
CRITICALhttps://docs.python.org/3.16/library/logging.html#logging.CRITICAL
https://docs.python.org/3.16/tutorial/stdlib2.html#weak-references
garbage collectionhttps://docs.python.org/3.16/glossary.html#term-garbage-collection
weakrefhttps://docs.python.org/3.16/library/weakref.html#module-weakref
https://docs.python.org/3.16/tutorial/stdlib2.html#tools-for-working-with-lists
arrayhttps://docs.python.org/3.16/library/array.html#module-array
arrayhttps://docs.python.org/3.16/library/array.html#array.array
collectionshttps://docs.python.org/3.16/library/collections.html#module-collections
dequehttps://docs.python.org/3.16/library/collections.html#collections.deque
bisecthttps://docs.python.org/3.16/library/bisect.html#module-bisect
heapqhttps://docs.python.org/3.16/library/heapq.html#module-heapq
https://docs.python.org/3.16/tutorial/stdlib2.html#decimal-floating-point-arithmetic
decimalhttps://docs.python.org/3.16/library/decimal.html#module-decimal
Decimalhttps://docs.python.org/3.16/library/decimal.html#decimal.Decimal
floathttps://docs.python.org/3.16/library/functions.html#float
Decimalhttps://docs.python.org/3.16/library/decimal.html#decimal.Decimal
Decimalhttps://docs.python.org/3.16/library/decimal.html#decimal.Decimal
decimalhttps://docs.python.org/3.16/library/decimal.html#module-decimal
Table of Contentshttps://docs.python.org/3.16/contents.html
11. Brief tour of the standard library — part IIhttps://docs.python.org/3.16/tutorial/stdlib2.html
11.1. Output formattinghttps://docs.python.org/3.16/tutorial/stdlib2.html#output-formatting
11.2. Templatinghttps://docs.python.org/3.16/tutorial/stdlib2.html#templating
11.3. Working with binary data record layoutshttps://docs.python.org/3.16/tutorial/stdlib2.html#working-with-binary-data-record-layouts
11.4. Multi-threadinghttps://docs.python.org/3.16/tutorial/stdlib2.html#multi-threading
11.5. Logginghttps://docs.python.org/3.16/tutorial/stdlib2.html#logging
11.6. Weak referenceshttps://docs.python.org/3.16/tutorial/stdlib2.html#weak-references
11.7. Tools for working with listshttps://docs.python.org/3.16/tutorial/stdlib2.html#tools-for-working-with-lists
11.8. Decimal floating-point arithmetichttps://docs.python.org/3.16/tutorial/stdlib2.html#decimal-floating-point-arithmetic
10. Brief tour of the standard libraryhttps://docs.python.org/3.16/tutorial/stdlib.html
12. Virtual Environments and Packageshttps://docs.python.org/3.16/tutorial/venv.html
Report a bughttps://docs.python.org/3.16/bugs.html
Improve this pagehttps://docs.python.org/3.16/improve-page-nojs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/stdlib2.rst?plain=1
indexhttps://docs.python.org/3.16/genindex.html
moduleshttps://docs.python.org/3.16/py-modindex.html
nexthttps://docs.python.org/3.16/tutorial/venv.html
previoushttps://docs.python.org/3.16/tutorial/stdlib.html
Pythonhttps://www.python.org/
3.16.0a0 Documentationhttps://docs.python.org/3.16/index.html
The Python Tutorialhttps://docs.python.org/3.16/tutorial/index.html
11. Brief tour of the standard library — part IIhttps://docs.python.org/3.16/tutorial/stdlib2.html
Copyrighthttps://docs.python.org/3.16/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.