About 600 results
Open links in new tab
  1. csv — CSV File Reading and Writing — Python 3.14.2 documentation

    3 days ago · The csv module implements classes to read and write tabular data in CSV format. It allows programmers to say, “write this data in the format preferred by Excel,” or “read data …

  2. File Formats — Python 3.14.2 documentation

    2 days ago · File Formats ¶ The modules described in this chapter parse various miscellaneous file formats that aren’t markup languages and are not related to e-mail.

  3. Python Module Index — Python 3.14.2 documentation

    2 days ago · Python Module Index _ | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | z

  4. configparser — Configuration file parser — Python 3.14.2 …

    2 days ago · This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI files.

  5. zipfile — Work with ZIP archives — Python 3.14.2 documentation

    This module provides tools to create, read, write, append, and list a ZIP file. Any advanced use of this module will require an understanding of the format, as defined in PKZIP Application Note.

  6. 13.1. csv — Lecture et écriture de fichiers CSV - Python

    Feb 7, 2018 · Le module csv implémente des classes pour lire et écrire des données tabulaires au format CSV. Il vous permet de dire « écris ces données dans le format préféré par Excel » ou …

  7. The Python Standard Library — Python 3.14.2 documentation

    2 days ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as …

  8. Installing Python Modules — Python 3.14.2 documentation

    2 days ago · Python has typically relied heavily on source based distribution, with end users being expected to compile extension modules from source as part of the installation process.

  9. gzip — Support for gzip files — Python 3.14.2 documentation

    The gzip module provides the GzipFile class, as well as the open(), compress() and decompress() convenience functions. The GzipFile class reads and writes gzip -format files, automatically …

  10. 5. The import system — Python 3.14.2 documentation

    2 days ago · Python has only one type of module object, and all modules are of this type, regardless of whether the module is implemented in Python, C, or something else. To help …