- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 21 - 30 of 423 for host:docs.python.org (0.03 sec)
-
codecs — Codec registry and base classes — Pyth...
Source code: Lib/codecs.py This module defines base classes for standard Python codecs (encoders and decoders) and provides access to the internal Python codec registry, which manages the codec and...docs.python.org/3/library/codecs.htmlRegistered: Mon Mar 31 03:22:56 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 161K bytes - Viewed (0) -
io — Core tools for working with streams — Pyth...
Source code: Lib/io.py Overview: The io module provides Python’s main facilities for dealing with various types of I/O. There are three main types of I/O: text I/O, binary I/O and raw I/O. These ar...docs.python.org/3/library/io.htmlRegistered: Mon Mar 31 03:22:21 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 164.8K bytes - Viewed (0) -
zipfile — Work with ZIP archives — Python 3.13....
Source code: Lib/zipfile/ The ZIP file format is a common archive and compression standard. This module provides tools to create, read, write, append, and list a ZIP file. Any advanced use of this ...docs.python.org/3/library/zipfile.htmlRegistered: Mon Mar 31 03:23:22 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 130.9K bytes - Viewed (0) -
timeit — Measure execution time of small code s...
Source code: Lib/timeit.py This module provides a simple way to time small bits of Python code. It has both a Command-Line Interface as well as a callable one. It avoids a number of common traps fo...docs.python.org/3/library/timeit.htmlRegistered: Mon Mar 31 03:23:29 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 56.8K bytes - Viewed (0) -
6. Modules — Python 3.13.2 documentation
If you quit from the Python interpreter and enter it again, the definitions you have made (functions and variables) are lost. Therefore, if you want to write a somewhat longer program, you are bett...docs.python.org/3/tutorial/modules.htmlRegistered: Mon Mar 31 03:21:44 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 71.1K bytes - Viewed (0) -
gzip — Support for gzip files — Python 3.13.2 d...
Source code: Lib/gzip.py This module provides a simple interface to compress and decompress files just like the GNU programs gzip and gunzip would. The data compression is provided by the zlib modu...docs.python.org/3/library/gzip.htmlRegistered: Mon Mar 31 03:22:25 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 50.7K bytes - Viewed (0) -
copy — Shallow and deep copy operations — Pytho...
Source code: Lib/copy.py Assignment statements in Python do not copy objects, they create bindings between a target and an object. For collections that are mutable or contain mutable items, a copy ...docs.python.org/3/library/copy.htmlRegistered: Mon Mar 31 03:23:57 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 24.8K bytes - Viewed (0) -
8. Compound statements — Python 3.13.2 document...
Compound statements contain (groups of) other statements; they affect or control the execution of those other statements in some way. In general, compound statements span multiple lines, although i...docs.python.org/3/reference/compound_stmts.htmlRegistered: Mon Mar 31 03:19:19 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 210K bytes - Viewed (0) -
pdb — The Python Debugger — Python 3.13.2 docum...
Source code: Lib/pdb.py The module pdb defines an interactive source code debugger for Python programs. It supports setting (conditional) breakpoints and single stepping at the source line level, i...docs.python.org/3/library/pdb.htmlRegistered: Mon Mar 31 03:19:33 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 90.5K bytes - Viewed (0) -
4. More Control Flow Tools — Python 3.13.2 docu...
As well as the while statement just introduced, Python uses a few more that we will encounter in this chapter. if Statements: Perhaps the most well-known statement type is the if statement. For exa...docs.python.org/3/tutorial/controlflow.htmlRegistered: Mon Mar 31 03:18:40 UTC 2025 - Last Modified: Sun Mar 30 10:18:11 UTC 2025 - 135.7K bytes - Viewed (0)