Skip to content
NeuroDev Tech Class home

Course Catalog Computer Programming

Python II - Object-Oriented Programming

3 units / 20 items

This intermediate course dives into object-oriented programming (OOP) concepts, GUI development, and modular programming with Python. Students will learn about recursion, generators, decorators, and third-party libraries, culminating in a project where students develop a GUI-based chess game using PyGame.

Sign in to start this course

Course Objectives

Unit 1

Objects and Classes

Explore the core principles of Object-Oriented Programming (OOP) in Python, including classes, objects, inheritance, polymorphism, encapsulation, and abstraction. This unit lays the foundation for designing robust and reusable code structures.

  1. ReadingWhat Is Object-Oriented Programming?
  2. VideoClasses and Instances
  3. Checkpoint1.1 Classes, Objects, and Encapsulation in Python
  4. Checkpoint1.2 Inheritance in Python
  5. Checkpoint1.3 Polymorphism in Python
  6. Checkpoint1.4 Abstraction
  7. Checkpoint1.5 Operator Overloading
Unit 2

Advanced Programming Techniques

Delve into advanced programming concepts such as recursion, scope, and modular programming. This unit also introduces basic graphics with Python using Turtle Graphics, setting the stage for game development with PyGame.

  1. VideoYou WILL Understand Recursion After Watching This
  2. Checkpoint2.1 Recursion
  3. Checkpoint2.2 Scope
  4. Checkpoint2.3 Modular Programming Revisited
  5. Checkpoint2.4 Turtle Graphics
  6. ReadingSidenote - DRY (Don't Repeat Yourself)
  7. ReadingSidenote - Refactoring Strategies
Unit 3

PyGame

Introduce game development using PyGame. This unit covers the essentials of creating graphical applications, handling user input, and integrating sound. Students will apply their knowledge to develop a GUI-based chess game as their final project.

  1. Checkpoint3.1 Introduction to Pygame
  2. Checkpoint3.2 Drawing Shapes in Pygame
  3. Checkpoint3.3 Handling User Input in Pygame
  4. Checkpoint3.4 Text and Sound Effects in Pygame
  5. SlideshowWhat Is Version Control?
  6. Checkpoint3.5 Final Project