Python Classes

In addition to using the Python-provided types, we can declare our own classes, and from classes we can instantiate objects.

An object is an instance of a class.
A class is the type of an object.

Define a class in this way:

class <class_name>:
    # my class

For example let’s define a Dog class

class Dog:
    # the Dog class

A class can define methods:

class Dog:
    # the Dog class
    def bark(self):
        print('WOF!')

self as the argument of the method points to the current object instance, and must be specified when defining a method.

We create an instance of a class, an object, using this syntax:

roger = Dog()

Now roger is a new object of type Dog.

If you run

print(type(roger))

You will get <class '__main__.Dog'>

A special type of method, __init__() is called constructor, and we can use it to initialize one or more properties when we create a new object from that class:

class Dog:
    # the Dog class
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def bark(self):
        print('WOF!')

We use it in this way:

roger = Dog('Roger', 8)
print(roger.name) # 'Roger'
print(roger.age)  # 8

roger.bark() # 'WOF!'

One important features of classes is inheritance.

We can create an Animal class with a method walk():

class Animal:
    def walk(self):
        print('Walking..')

and the Dog class can inherit from Animal:

class Dog(Animal):
    def bark(self):
        print('WOF!')

Now creating a new object of class Dog will have the walk() method as that’s inherited from Animal:

roger = Dog()
roger.walk() # 'Walking..'
roger.bark() # 'WOF!'


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

In addition to using the Python-provided types, we can declare our own classes, and from classes we can instantiate objects.

An object is an instance of a class. A class is the type of an object.

Define a class in this way:

class <class_name>:
    # my class

For example let’s define a Dog class

class Dog:
    # the Dog class

A class can define methods:

class Dog:
    # the Dog class
    def bark(self):
        print('WOF!')

self as the argument of the method points to the current object instance, and must be specified when defining a method.

We create an instance of a class, an object, using this syntax:

roger = Dog()

Now roger is a new object of type Dog.

If you run

print(type(roger))

You will get <class '__main__.Dog'>

A special type of method, __init__() is called constructor, and we can use it to initialize one or more properties when we create a new object from that class:

class Dog:
    # the Dog class
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def bark(self):
        print('WOF!')

We use it in this way:

roger = Dog('Roger', 8)
print(roger.name) # 'Roger'
print(roger.age)  # 8

roger.bark() # 'WOF!'

One important features of classes is inheritance.

We can create an Animal class with a method walk():

class Animal:
    def walk(self):
        print('Walking..')

and the Dog class can inherit from Animal:

class Dog(Animal):
    def bark(self):
        print('WOF!')

Now creating a new object of class Dog will have the walk() method as that’s inherited from Animal:

roger = Dog()
roger.walk() # 'Walking..'
roger.bark() # 'WOF!'


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2020-12-26T05:00:00+00:00) Python Classes. Retrieved from https://www.scien.cx/2020/12/26/python-classes/

MLA
" » Python Classes." flaviocopes.com | Sciencx - Saturday December 26, 2020, https://www.scien.cx/2020/12/26/python-classes/
HARVARD
flaviocopes.com | Sciencx Saturday December 26, 2020 » Python Classes., viewed ,<https://www.scien.cx/2020/12/26/python-classes/>
VANCOUVER
flaviocopes.com | Sciencx - » Python Classes. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2020/12/26/python-classes/
CHICAGO
" » Python Classes." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2020/12/26/python-classes/
IEEE
" » Python Classes." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2020/12/26/python-classes/. [Accessed: ]
rf:citation
» Python Classes | flaviocopes.com | Sciencx | https://www.scien.cx/2020/12/26/python-classes/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.