Objective
In this unit we will introduce the concept of Object-Oriented Programming (OOP) in Python. OOP is a programming paradigm that uses objects and classes to structure code in a way that models real-world entities. By the end of this unit, you will understand the basics of classes and objects, and how to create and use them in Python.
Introduction to OOP
Object-Oriented Programming is a way of organizing code using objects, which represent entities in the real world. Objects can have attributes (characteristics) and methods (behaviors). Classes are blueprints for creating objects, defining the attributes and methods that objects of that class will have.
Understanding Classes and Objects
A class is a blueprint for creating objects. It defines the attributes and methods that the objects created from it will have. An object is an instance of a class, created from the blueprint, and can have unique values for its attributes.
Here's an example of defining a class:
class Shape:
def __init__(self, sides, color):
self.sides = sides
self.color = color
def describe(self):
print(f"A {self.color} shape with {self.sides} sides.")
In this example, Shape
is a class with two attributes (sides
and color
)
and a method (describe
).
The __init__
method is a special method that gets called when you create
a new object. It's used to initialize the object's attributes.
Creating Classes and Objects in Python
You can create an object from a class by calling the class as if it were a
function. Here's how you can create an object from the Shape
class:
my_shape = Shape(4, "red")
my_shape.describe() # Output: A red shape with 4 sides.
Instance Variables and Methods
Instance variables are variables that belong to an object, and each object can
have different values for those variables. In the Shape
class, sides
and color
are instance variables.
Instance methods are functions that belong to an object and can access and
modify the object's attributes. In the Shape
class, describe
is an instance
method.
Project: Create a Simple Shape Class to Represent the Shapes the Turtle Draws
In this project, you'll create a simple Shape
class that represents geometric
shapes. You'll then use this class to create objects representing different
shapes and have the turtle draw them.
import turtle
class Shape:
def __init__(self, turtle, sides, length):
self.t = turtle # turtle instance
self.sides = sides
self.length = length
def draw(self):
for _ in range(self.sides):
self.t.forward(self.length)
self.t.right(360 / self.sides)
# Create a new turtle screen and set its background color
screen = turtle.Screen()
screen.setup(width=800, height=600)
screen.bgcolor("white")
# Initialize a turtle object
t = turtle.Turtle()
# Create Shape objects
square = Shape(t, 4, 100)
pentagon = Shape(t, 5, 70)
# Draw the square
square.draw()
# Move the turtle to 150 units to the left of the center
turtle.penup()
turtle.goto(-150, 0)
turtle.pendown()
# Draw the pentagon
pentagon.draw()
# Hide the turtle and wait until the window is closed
t.hideturtle()
turtle.done()
Let's walk through this code step by step. First we're creating a simple
Shape
class to represent geometric shapes and using the Turtle library
to draw them.
Defining the Shape Class
The Shape
class is defined with two attributes: sides
, representing
the number of sides the shape has, and length
, representing the length
of each side. The class also includes a method draw
, which uses the
Turtle library to draw the shape.
class Shape:
def __init__(self, sides, length):
self.sides = sides
self.length = length
def draw(self):
for _ in range(self.sides):
turtle.forward(self.length)
turtle.right(360 / self.sides)
The __init__
method is the constructor for the class, and it initializes the
attributes of the object with the values passed when the object is created.
The draw
method contains a loop that iterates self.sides
times. In each
iteration, the turtle moves forward by self.length
units and then turns
right by 360 / self.sides
degrees. This ensures that the turtle draws a
shape with the correct number of sides and angles.
Creating and Drawing Shapes
After defining the class, we create a new turtle screen and then create two
objects of the Shape
class: a square with 4 sides of length 100, and a
pentagon with 5 sides of length 70.
# Create a new turtle screen
screen = turtle.Screen()
# Create Shape objects
square = Shape(4, 100)
pentagon = Shape(5, 70)
We then draw the shapes using the draw
method of each object. Before drawing
the pentagon, we move the turtle to a new position to ensure that the shapes
don't overlap.
# Draw the square
square.draw()
# Move the turtle to 150 units to the left of the center
turtle.penup()
turtle.goto(-150, 0)
turtle.pendown()
# Draw the pentagon
pentagon.draw()
Finally, we use turtle.done()
to keep the window open, allowing us to see the drawn shapes.
In the next unit, we'll dive deeper into object-oriented programming, exploring more about methods and variables in classes.