33. Inheritance - tomaslt99/Python-language-tutorials GitHub Wiki

Inheritance


Code:

# Parent class. also called base class.
class Chef:
  def make_chicken(self):
    print("The chef makes chicken")

def make_salad(self):
  print("The chef makes salad")

# If parent and child has same defintion of class, child class will overwire.
  def make_special_dish(self):
    print("The chef makes bbq ribs")