About 13,900 results
Open links in new tab
  1. 6. ModulesPython 3.14.7 documentation

    18 hours ago · Such a file is called a module; definitions from a module can be imported into other modules or into the main module …

  2. Python Modules - W3Schools

    What is a Module? Consider a module to be the same as a code library. A file containing a set of functions you want to include in …

  3. Python Modules - GeeksforGeeks

    Apr 6, 2026 · Modules help organize code into separate files so that programs become easier to maintain and reuse. Instead of …

  4. Python Module Index — Python 3.14.7 documentation

    1 day ago · Generate special methods on user-defined classes.

  5. PyPI · The Python Package Index

    The Python Package Index (PyPI) is a repository of software for the Python programming language. PyPI helps you find and install …

  6. Welcome to Python.org

    We’ll go through a couple of our core operators, why Python is such a crucial part of our software solution, and how we augmented …

  7. Python Modules and Imports: How to Organise and Reuse Code

    May 21, 2026 · Quick Answer A module in Python is any .py file that defines functions, classes, and variables you can reuse. …

  8. Python Modules – Types and Examples - Python Geeks

    A Module is a .py file containing Python code whereas a Package is a directory containing multiple modules and sub-packages. To …

  9. Python Modules (With Examples) - Programiz

    In this tutorial, you will learn to create and import custom modules in Python. Also, you will find different techniques to import and use …

  10. Built-in Modules in Python - GeeksforGeeks

    Apr 28, 2025 · Python provides various types of modules which include Python built-in modules and external modules. In this article, …