Exercise 40: Modules, Classes, and Objects
Python is called an “object-oriented programming language.” This means there is a construct in Python called a class that lets you structure your software in a particular way. Using classes, you can add consistency to your programs so that they can be used in a cleaner way. At least that’s the theory.
I am now going to teach you the beginnings of object-oriented programming, classes, and objects using what you already know about dictionaries and modules. My problem is that Object-Oriented Programming (OOP) is just plain weird. You have to struggle with this, try to understand what I say here, type in the code, and in the next exercise I’ll hammer it in.
Here we go.
Modules Are Like Dictionaries
You know how a dictionary is created and used and that it is a way to map one thing to another. That means if you have a dictionary with a key “apple” and you want to get it then you do this:
Keep this idea of “get X from Y” in your head, and now think about modules. You’ve made a few so far, and you should know they are:
- A Python file with some functions or variables in it ..
- You import that file.
- And you can access the functions or variables in that module with the . (dot) operator.
Imagine I have a module that I decide to name mystuff.py and I put a function in it called apple. Here’s the module mystuff.py:
Once I have this code, I can use the module MyStuff with import and then access the apple function:
I could also put a variable in it named tangerine:
I can access that the same way:
Refer back to the dictionary, and you should start to see how this is similar to using a dictionary, but the syntax is different. Let’s compare:
This means we have a very common pattern in Python:
- Take a key=value style container.
- Get something out of it by the key’s name.
In the case of the dictionary, the key is a string and the syntax is [key]. In the case of the module, the key is an identifier, and the syntax is .key. Other than that they are nearly the same thing.
Classes Are Like Modules
You can think about a module as a specialized dictionary that can store Python code so you can access it with the . operator. Python also has another construct that serves a similar purpose called a class. A class is a way to take a grouping of functions and data and place them inside a container so you can access them with the . (dot) operator.
If I were to create a class just like the mystuff module, I’d do something like this:
That looks complicated compared to modules, and there is definitely a lot going on by comparison, but you should be able to make out how this is like a “mini-module” with MyStuff having an apple() function in it. What is probably confusing is the __init__() function and use of self.tangerine for setting the tangerine instance variable.
Here’s why classes are used instead of modules: You can take this MyStuff class and use it to craft many of them, millions at a time if you want, and each one won’t interfere with each other. When you import a module there is only one for the entire program unless you do some monster hacks.
Before you can understand this though, you need to know what an “object” is and how to work with MyStuff just like you do with the mystuff.py module.
Objects are Like Import
If a class is like a “mini-module,” then there has to be a similar concept to import but for classes. That concept is called “instantiate”, which is just a fancy, obnoxious, overly smart way to say “create.” When you instantiate a class what you get is called an object.
You instantiate (create) a class by calling the class like it’s a function, like this:
The first line is the “instantiate” operation, and it’s a lot like calling a function. However, Python coordinates a sequence of events for you behind the scenes. I’ll go through these steps using the above code for MyStuff:
- Python looks for MyStuff() and sees that it is a class you’ve defined.
- Python crafts an empty object with all the functions you’ve specified in the class using def.
- Python then looks to see if you made a “magic” __init__ function, and if you have it calls that function to initialize your newly created empty object.
- In the MyStuff function __init__ I then get this extra variable self, which is that empty object Python made for me, and I can set variables on it just like you would with a module, dictionary, or other object.
- In this case, I set self.tangerine to a song lyric and then I’ve initialized this object.
- Now Python can take this newly minted object and assign it to the thing variable for me to work with.
That’s the basics of how Python does this “mini-import” when you call a class like a function. Remember that this is not giving you the class, but instead is using the class as a blueprint for building a copy of that type of thing.
Keep in mind that I’m giving you a slightly inaccurate idea for how these work so that you can start to build up an understanding of classes based on what you know about modules. The truth is, classes and objects suddenly diverge from modules at this point. If I were being totally honest, I’d say something more like this:
- Classes are like blueprints or definitions for creating new mini-modules.
- Instantiation is how you make one of these mini-modules and import it at the same time. “Instantiate” just means to create an object from the class.
- The resulting created mini-module is called an object and you then assign it to a variable to work with it.
At this point objects behave differently from modules and this should only serve as a way for you to bridge over to understanding classes and objects.
Getting Things from Things
I now have three ways to get things from things:
A First Class Example
You should start seeing the similarities in these three key=value container types and probably have a bunch of questions. Hang on with the questions, as the next exercise will hammer home your “object-oriented vocabulary.” In this exercise, I just want you to type in this code and get it working so that you have some experience before moving on.
What You Should See
Study Drills
- Write some more songs using this and make sure you understand that you’re passing a list of strings as the lyrics.
- Put the lyrics in a separate variable, then pass that variable to the class to use instead.
- See if you can hack on this and make it do more things. Don’t worry if you have no idea how, just give it a try, see what happens. Break it, trash it, thrash it, you can’t hurt it.
- Search online for “object-oriented programming” and try to overflow your brain with what you read. Don’t worry if it makes absolutely no sense to you. Half of that stuff makes no sense to me too.
Common Student Questions
- Why do I need self when I make __init__ or other functions for classes?
- If you don’t have self, then code like cheese = 'Frank' is ambiguous. That code isn’t clear about whether you mean the instance’s cheese attribute, or a local variable named cheese. With self.cheese = 'Frank' it’s very clear you mean the instance attribute self.cheese.