Python abstract classes 👻

Published: 04 January 2021
on channel: Bro Code
79,495
4.2k

Python abstract class example tutorial explained

#python #abstract #classes

#abstract class = a class which contains one or more abstract methods.
#abstract method = a method that has a declaration but does not have an implementation.

prevents a user from creating an object of that class
+ compels a user to override abstract methods in a child class

from abc import ABC, abstractmethod

class Vehicle(ABC):

@abstractmethod
def go(self):
pass

@abstractmethod
def stop(self):
pass

class Car(Vehicle):

def go(self):
print("You drive the car")

def stop(self):
print("This car is stopped")

class Motorcycle(Vehicle):

def go(self):
print("You ride the motorcycle")

def stop(self):
print("This motorcycle is stopped")


#vehicle = Vehicle()
car = Car()
motorcycle = Motorcycle()

#vehicle.go()
car.go()
motorcycle.go()

#vehicle.stop()
car.stop()
motorcycle.stop()

music credits 🎼 :
===========================================================
Up In My Jam (All Of A Sudden) by - Kubbi   / kubbi  
Creative Commons — Attribution-ShareAlike 3.0 Unported— CC BY-SA 3.0
Free Download / Stream: http://bit.ly/2JnDfCE
Music promoted by Audio Library    • Up In My Jam (All Of A Sudden) – Kubb...  
===========================================================


On this page of the site you can watch the video online Python abstract classes 👻 with a duration of hours minute second in good quality, which was uploaded by the user Bro Code 04 January 2021, share the link with friends and acquaintances, this video has already been watched 79,495 times on youtube and it was liked by 4.2 thousand viewers. Enjoy your viewing!