Module 0: Before Python
Before we start coding in Python, it is important to understand some basic concepts. In this module, we will learn what software is, how computers understand code, and why we use Python.
Module 1: Getting Started
In this module, we will learn how to install Python on your computer, set up VS Code to write code, and run your very first Python program.
Module 2: Variables & Data Types
In this module, we will learn how to store data in computer memory using variables and explore the different types of data we can use in Python.
Module 3: Input & Output
In this module, we will learn how to show output on the screen using print() and take input from the user using input().
Module 4: Operators
In this module, we will learn about operators. Operators are symbols used to perform calculations, make comparisons, and run logical tests in Python.
Module 5: Conditional Statements
In this module, we will learn how to make decisions in our code. Conditional statements allow us to run certain blocks of code only when specific conditions are met.
Module 6: Loops
In this module, we will learn about loops. Loops are used to run a block of code multiple times. This saves us from writing duplicate code.