Lectures
Lectures
This document provides links to all available Python programming lectures in this course.
Introduction
- Introduction to Interactive Python Learning - Learn how to use the interactive examples and exercises
Unit 1: Python Fundamentals
- Comments in Python - Single-line and multi-line comments, how Python handles them
- The Print Function - Your first communication with Python, printing text and numbers
- Variables - Storing Information - Variable assignment, naming rules, and usage
- Math Operations - Calculating with Python - Mathematical operators, order of operations, and assignment shortcuts
Unit 2: Functions and conditional logic (if
/elif
/else
)
- Functions - Creating Reusable Code - Defining functions, parameters, return values, and scope
- Conditional Logic - Making Decisions - if/elif/else statements, boolean logic, and decision-making
- Strings - Working with Text - String methods, text processing, and method chaining
Unit 3: Lists and for
loops
- Lists - Introduction to Python lists
- Ranges and slicing - Slicing (access parts of sequences)
- For loops - For loops: executing the same code on every item in a sequence (lists, strings, etc.)
More lectures will be added as the course progresses.