Python class is concept of “object oriented programming”. Python is an object oriented programming language (oop). OOP is a way to build software.

With OOP you can make your program much more organized, scalable, reusable and extensible. The OOP concept can be a bit weird. It can be challenging to grasp, but it’s a very powerful concept.

Related course: Complete Python Programming Course & Exercises

Example

Objects

In Python, you can define objects. An object is a collection of methods and variables. Objects live somewhere in the computers memory. They can be manipulated at runtime.

Lets create a theoritcal example, we create an object dog. Creating an object is just one line of code:

1
obj1 = dog()

Each object can have variables. The values of those variables are unique to the object. We set object variables (name,age)

1
2
obj1.name = "Woof"
obj1.age = 5

If methods exist for an object, they can be called. The objects unique variables can be used in those methods.
The methods can be used multiple times:

1
2
obj1.bark()
obj1.bark()

In your program you can have multiple objects. Those objects can be of the same type or a different type.

1
2
3
4
obj1 = dog()
obj2 = dog()
obj3 = dog()
obj4 = bird()

So how does Python know the type of an object? How does it know which methods and variables exist for a type? They are defined in a class.

Class

Objects are always created from classes. A class define each method and variable that exists within the object. You could see classes as blueprints for objects.

Remember we had objects of type dog in the previous example?

The object had variables (age,name) and a method (bark). they are defined in the class dog.
This is how that class is defined:

1
2
3
4
5
6
class dog:
name = ""
age = 0

def bark(self):
print('Bark')

First we define the class itself: class dog. Then the variables are defined (name,dog). Finally we define the method. If you look closely you’ll see the method has the word self in it. The word self refers to the object (You can create several objects from a class.)

classes

Detailed example

Classes are not just used for funny examples (dog,bird). They’re used all over computer software.

If you are given the task of making a web browser, you need to show a website at some point.
Lets say the program will be object orientated. Then a class can be defined in this way:

1
2
3
4
5
6
7
#!/usr/bin/python
class Website:
def __init__(self,title):
self.title = title

def showTitle(self):
print(self.title)

Wait.. what’s init?

If an object is created, the method init is called. This is always the first method that is called when creating a new object. The method is called the constructor.

Then you can create the web browser object.

1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python
class Website:
def __init__(self,title):
self.title = title

def showTitle(self):
print(self.title)

obj = Website('pythonbasics.org')
obj.showTitle()

In this example we have one object (obj), created from the class Website. The class has two methods: init() and showTitle().

If you are a beginner, then I highly recommend this book.

Exercise

Try the exercises below

  1. Can you have more than one class in a file?
  2. Can multiple objects be created from the same class?
  3. Can objects create classes?
  4. Using the code above, create another object
  5. Add a method to the class: location()

After completing these continue with the next exercise.

Download answers