00 python programming outline
title: Python3 Outline author: Juma Shafara date: "2023-11" description: Python 3 Beginner Course Outline keywords: [Python Course Outline]¶

Basics ¶
- Python Overview
- Introduction
- Installing
- Writing Code
- Displaying Output
- Statements
- Syntax
- Comments
- Exercise
Variables ¶
- Variables
- Data Types
- Numbers
- Number Methods
- Strings
- Type Conversion
- Python Booleans
- Exercise
Operations ¶
- Operators Intro
- Arithmetics
- Assignment
- Comparison
- Logical
- Identity
- Membership
- Exercise
Flow Control ¶
- Functions
- Lambda functions
- If else
- If else shorthand
- For Loop
- While Loop
- Break and Continue
- Pass
- Exercise
Advanced ¶
- Functions
- Classes and Objects
- Inheritance
- Variable Scope
- Formatting Strings
- Try … Except
- Iterators
- User Input
- Exercise
Working With Files ¶
- Intro
- File Handling
- File Reading
- File Writing/Creating/Appending
- File Deleting
- Exercise