Chapter 1: What is Python.
Goal: About Python, what it is, how to set up the interpreter on machine
Sub-topics
Setting Up
Chapter 2: The Basics
Goal: Covers basics, syntax, writing a basic program and executing the code
Sub-topics
Language Classification
Low-Level Language
High-Level Language
Python Language Syntax
Reserved Words
Identifiers
Indentation
Comments
Input
Output
Escape Characters
Writing a Program
Chapter 3: Working with Data
Goal: Covers data types: integers, lists, strings, etc, etc , variables, operators
Sub-topics
Variables
Local Variables
Global Variables
Basic Data Types
Integers
Floating Point Numbers
Strings
Lists
Two Dimensional Lists
Sets
Tuples
Dictionaries
Casting Data Types
Arithmetic Operators
Operator Precedence
Performing Arithmetic
Comparison Operators
Boolean Operators
Bitwise Operators
Lab Exercises
Chapter 4: Flow Control
Goal: Explains flow control, sequence, if/elif, for/while
Sub-topics
Sequence
Selection
if...else
elif
Iteration (Loops)
For loop
While loop
Break and Continue
Lab Exercises
Chapter 5: Handling Files
Goal: Explains file handling, reading files, writing to files, text files, binary files
File Types
Text File
Binary
Text File Operations
Open Files
Write to a File
Read from a File
Binary File Operations
Open Files
Write to a File
Read a File
Random File Access
Lab Exercises
Chapter 6: Using Functions
Sub-topics
Declaring Functions
Recursion
Lab Exercises
Chapter 7: Exception Handling
Goal: Covers exception and error handling
Sub-topics
Types of Exception
Catching Exceptions
Raising your Own Exceptions
Chapter 8: Object Oriented Programming
Goal: OOP principles, classes, objects and inheritance
Sub-topics
Principles of OOP
Encapsulation
Inheritance
Polymorphism
Abstraction
Classes & Objects
Class Inheritance
Polymorphic Classes
Method Overriding
Chapter 9: Building an Interface
Goal: Building an interface using tkinter
Sub-topics
Creating a Window
Adding Widgets
Menus
The Canvas
Images
Buttons
Message Boxes
Text Field
Listbox
Checkbox
Labels
Label Frame
Interface Design
Chapter 10: Developing a Game
Sub-topics
Installing PyGame
Opening a Window
Adding an Image
The Game Loop
The Event Loop
Shapes
Basic Animation
Chapter 11: Python Web Development
Sub-topics
Web Servers
Executing a Script
Python Web Frameworks
Quick Reference
Data Types
Numeric Operators
Comparison Operators
Boolean Operators
String Operators
List Operators
Dictionary Operators
String Methods
List Methods
Dictionary Methods
Functions
Files
Conditional
Multi Conditional
While Loop
For Loop
Loop Control
Modules
Built in Functions
Declare a Class
Child Class
Create Object
Call Object Method
Show more