In this lesson, we're going to start a refresher on classes and objects. So the first thing we wanna do is we're going to take the Python file, that we ended up with and erase everything, and we're going to save it as, and now we're going to talk and create a very simple class. So first off, what is a class? Well, a class is kind of like how you're going to lay out the different variable types, and how they're handled. Experience says the best way to define what a class and what an object is, is to understand them as almost like user-defined variable types. So we have things like strings and integers, and floating point numbers, but we can also make our own. To make it you have to create a class. So to do that we use the word class. Next to it we're gonna say what kind of class is it? What's the name we wanna give it. And I'm gonna say let's call it instructor. So we have a class and the class name is instructor. And then we follow that with a colon, and now we establish some parameters associated with it. So say for example we have the instructors name. So it would be name, and then we can assign to it a value, let's say that that value is Jeremy. So now we've created a class. Once your class is created, we wanna create an object and to create an object, we merely have to create a variable, and then assign it to our class. So to keep it so it's easily understood, we're gonna create a variable called teacher, and we're going to make teacher equal instructor. (keyboard typing) And since it's a class that we're calling, we want to put parentheses after it. And then below that we can say, let's print, (keyboard typing) teacher.name. Now we're going to save this and run it. And you'll see that it prints out Jeremy. So what is the value of this? The value of classes exists inherently in the language of Python. It is object oriented. So when we create a class, we're creating something that's very native to the programming language and used quite a bit. So it understands it, it makes sense, and over time as we understand some of the nuances, it really makes the language much more powerful. In our next lesson, we are going to talk about the method. See you then.