Momentum logo
Team 12 Classroom

Intro to Object-Oriented Python

Posted on Apr 28th, 2022

Today, we’ll take a brief survey of classes and objects in Python to get us ready to take on Django.

Today’s topics

  • Python Classes
    • Instantiating an Object
    • Attributes
    • Instance Methods
    • “Magic” Methods

🔎 Mystery Word Project Retrospective

  • Something I learned by doing this project is…
  • Something I want to understand better or know more about is…
  • In this project, I was happy that I was able to…

🐍 Code Break

Creating classes and objects

🎯 Project

Today you are beginning a Django tutorial, where you will see classes implemented. Please complete at least part one by Monday, 5/2.

🔖 Resources

Object-oriented

Classes in Python

Useful resources for debugging

🦉 Code & Notes

Back to home