Modern Python: A Practical Guide
Preface
- Who This Book Is For
- Target audience and prerequisites
- How to Use This Book
- Reading paths and suggested progressions
- What You’ll Learn
- Primary takeaways and learning outcomes
Part I: Getting Started with Modern Python
Chapter 1: The Python Landscape
- Engaging Introduction
- Python’s history, philosophy, and guiding principles
- Python Versions
- Differences between major 3.x versions, focusing on 3.12+
- Ecosystem Overview
- Key libraries, frameworks, and the Python Package Index
- Why Python?
- Popular use cases and real-world examples
Chapter 2: Python Syntax and Data Types
- Basic Syntax and Structure
- Indentation, comments, and line statements
- Variables and Naming Conventions
- Snake_case vs. CamelCase; best practices
- Core Data Types
- Numbers, strings, booleans, None, lists, tuples, sets, and dicts
- Working with Type Annotations
- Overview, benefits, and simple examples
Chapter 3: Classes
- Object-Oriented Programming in Python
- Defining classes,
__init__
, and instance attributes
- Duck Typing and Polymorphism
- How Python focuses on behavior over inheritance