About 849,000 results
Open links in new tab
  1. 6. ModulesPython 3.14.0 documentation

    3 days ago · You may also want to use a handy function that you’ve written in several programs without copying its definition into each program. To support this, Python has a way to put …

  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 your application.

  3. Python Modules - GeeksforGeeks

    Jul 23, 2025 · We have covered Python Modules and it's operations like create, import, etc. This article will give the overview about Python modules so that you can easily create and use …

  4. Difference between Module and Function in Python

    Apr 21, 2023 · Modules can be used in multiple programs. Function isolates a particular task from the entire program. It can be called whenever we need that task to perform. A module is a …

  5. 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 custom and built-in modules in Python.

  6. 7. Functions and modules — Introduction to Python for ...

    Functions provide the basic building blocks of functionality in larger programs (and computer simulations), and help to control the inherent complexity of the process. We can group …

  7. Python Modules

    In this tutorial, you'll learn about Python modules and how to develop your own modules in Python.