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

    2 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

    3 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. 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 …

  4. The Python Standard Library — Python 3.15.0a4 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 …

  5. 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

  6. configparser — Configuration file parser — Python 3.14.2 …

    1 day 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.

  7. 5. The import system — Python 3.14.2 documentation

    4 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 …

  8. 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.

  9. 10. Brief Tour of the Standard Library — Python 3.14.2 …

    Nov 11, 2025 · The csv module supports direct reading and writing of files in Comma-Separated Value format, commonly supported by databases and spreadsheets. XML processing is …

  10. 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.