About 400 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. 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. 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 …

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

  6. The Python Standard Library — Python 3.14.2 documentation

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

  7. Installing Python Modules — Python 3.14.2 documentation

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

  8. 5. The import system — Python 3.14.2 documentation

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

  9. io — Core tools for working with streams — Python 3.14.2 …

    2 days ago · 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 …

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