Topic

Introduction

Lesson notes

Per topic Play video

Python is a high-level programming language known for readable syntax.

A Python program is made up of statements that are executed from top to bottom.

At introductory level, learners usually begin with print() statements, simple arithmetic, and saving code in .py files.

Important ideas:
- Python is case-sensitive.
- Indentation matters.
- Strings are written in quotes.
- Comments start with #.

First program

Basic print statement.
python