Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Module 03: Control Flow

📋 Overview

This module covers Python's control flow statements, which allow you to control the execution order of your code based on conditions and iterations.

🎯 Learning Objectives

  • Master conditional statements (if, elif, else)
  • Understand and use for and while loops
  • Apply loop control statements (break, continue, pass)
  • Work with range(), enumerate(), and zip()
  • Write efficient and readable control flow

📂 Module Contents

File Topic Description
conditionals.py Conditional Statements if, elif, else, ternary operator
loops.py Loops for loops, while loops, nested loops
loop_control.py Loop Control break, continue, pass, else clause

⏱️ Estimated Time

3-4 hours for complete understanding

✅ Prerequisites

  • Completion of Module 01 (Python Basics)
  • Completion of Module 02 (Data Types)

🔗 Next Steps

After completing this module, proceed to 04-functions to learn about functions in Python.