Object Oriented Programming I
Object Oriented Programming I
TRE
Python Classes/Objects
Python is an object oriented programming language.
CEN
Almost everything in Python is an object, with its
NG
properties and methods.
RNI
A Class is like an object constructor, or a "blueprint"
for creating objects.
LEA
Create a Class
CH
Example
INF
class MyClass:
x = 5
ALW
Create Object
Now we can use the class named MyClass to create
objects:
Example
Create an object named p1, and print the value of x:
p1 = MyClass()
print(p1.x)
TRE
CEN
The examples above are classes and objects in their
simplest form, and are not really useful in real life
applications.
NG
RNI
To understand the meaning of classes we have to
understand the built-in __init__() function.
LEA
All classes have a function called __init__(), which is
always executed when the class is being initiated.
CH
OTE
Example
Create a class named Person, use the __init__()
ALW
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
p1 = Person("John", 36)
print(p1.name)
print(p1.age)
Note: The __init__() function is called automatically
every time the class is being used to create a new
TRE
object.
CEN
NG
The __str__() Function
RNI
The __str__() function controls what should be returned
when the class object is represented as a string.
LEA
If the __str__() function is not set, the string
representation of the object is returned:
CH
OTE
Example
The string representation of an object WITHOUT the
INF
__str__() function:
AYS
class Person:
def __init__(self, name, age):
ALW
self.name = name
self.age = age
p1 = Person("John", 36)
print(p1)
Example
The string representation of an object WITH the
__str__() function:
class Person:
def __init__(self, name, age):
TRE
self.name = name
self.age = age
CEN
def __str__(self):
NG
return f"{self.name}({self.age})"
Object Methods
OTE
Example
ALW
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("John", 36)
p1.myfunc()
TRE
Note: The self parameter is a reference to the current
CEN
instance of the class, and is used to access variables
that belong to the class.
NG
The self Parameter
RNI
The self parameter is a reference to the current
LEA
instance of the class, and is used to access variables
that belongs to the class.
CH
Example
AYS
class Person:
def __init__(mysillyobject, name, age):
mysillyobject.name = name
mysillyobject.age = age
def myfunc(abc):
print("Hello my name is " + abc.name)
p1 = Person("John", 36)
p1.myfunc()
TRE
Example
CEN
Set the age of p1 to 40:
NG
p1.age = 40
RNI
● Delete Object Properties
You can delete properties on objects by using the del
LEA
keyword:
CH
Example
OTE
del p1.age
AYS
● Delete Objects
You can delete objects by using the del keyword:
ALW
Example
Delete the p1 object:
del p1
● The pass Statement
class definitions cannot be empty, but if you for some
reason have a class definition with no content, put in
the pass statement to avoid getting an error.
Example
class Person:
TRE
pass
CEN
NG
RNI
LEA
CH
OTE
INF
AYS
ALW