About 930,000 results
Open links in new tab
  1. 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.

  2. Python Modules - W3Schools

    There are several built-in modules in Python, which you can import whenever you like. Import and use the platform module: There is a built-in function to list all the function names (or variable …

  3. 6. ModulesPython 3.13.3 documentation

    1 day ago · A module is a file containing Python definitions and statements. The file name is the module name with the suffix .py appended. Within a module, the module’s name (as a string) …

  4. Python Modules - GeeksforGeeks

    Aug 9, 2024 · In this article, we will cover all about Python modules, such as How to create our own simple module, Import Python modules, From statements in Python, we can use the alias …

  5. Python Modules - Types and Examples - Python Geeks

    Learn what is module in Python, types of Python Modules - Built-in &User defined, Examples of various Modules in Python, packages in Python.

  6. Python Modules - Online Tutorials Library

    Python's standard library comes bundled with a large number of modules. They are called built-in modules. Most of these built-in modules are written in C (as the reference implementation of …

  7. Modules in Python with Examples - TechBeamers

    Apr 18, 2025 · This tutorial clearly explained: what is a module in Python with examples, and how to create and import them in programs. Python modules are a powerful way to organize and …

  8. Python Modules - Python Tutorial

    Summary: in this tutorial, you’ll learn about Python modules, how to import objects from a module, and how to develop your modules. A module is a piece of software that has a specific …

  9. Python Modules Tutorial: Importing, Writing, and Using Them

    Mar 28, 2025 · Simply put, a module is a file consisting of Python code. It can define functions, classes, and variables and can also include runnable code. Any Python file can be referenced …

  10. Python Modules: Features, Types, Variables, Examples

    Feb 11, 2025 · There are several in-built Python modules, such as sys, math, os, random, etc. 2. User-defined Modules in Python. Users create these modules to make their code more …