About 23,300 results
Open links in new tab
  1. Examples of Module Structures - Vanderbilt University

    Let’s look at a few examples of how to structure an online course module. There is no perfect module structure, and even when courses are designed and taught by the same person, they will typically …

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

  3. Python Modules - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  4. TEMPLATE OF MODULES (Sample) | PDF | Educational Assessment

    TEMPLATE OF MODULES (sample) - Free download as PDF File (.pdf), Text File (.txt) or read online for free. This document provides information on a course titled "Assessment in Learning 1" including: 1.

  5. JavaScript Modules – Explained with Examples - freeCodeCamp.org

    Jul 28, 2021 · A module in JavaScript is just a file containing related code. In JavaScript, we use the import and export keywords to share and receive functionalities respectively across different modules.

  6. Module Structure | Center for Teaching and Learning | SFA

    What is a Module? A module, or lesson, is the strategic breakdown of content into digestible pieces that build structure and consistency for instruction. A getting started or introductory module includes all of …

  7. Step by Step Guide – Module-Making Camp

    Add comments about how the content of this module connects with what students have learned before and what they will learn later. Write in short sentences and use bullet points and numbered lists.

  8. Python Modules – Types and Examples - Python Geeks

    Creating a module is a simple two-step process. First, we need to write some Python code in a file using any text editor or an IDE. Then, we need to save the file with the extension .py. We can name the file …

  9. Python Modules - GeeksforGeeks

    Jan 10, 2026 · To create a Python module, write the desired code and save that in a file with .py extension. Example: Let's create a calc.py in which we define two functions, one add and another …

  10. Python Modules

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