This is an archived version of the course and is no longer updated. Please find the latest version of the course on the main webpage.

Introduction

This is a short module to introduce you to how Python packages libraries.

We will concentrate on discussing these three terminologies:

  • scripts
  • modules
  • packages

Scripts

Scripts are files that contain logical programs.

They are processed by the interpreter that executes the commands sequentially

What we have asked you to write so far are scripts.

You execute scripts via python3 script_name.py.