Skip to content

Instantly share code, notes, and snippets.

@Doz12
Created July 21, 2019 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Doz12/1643b38c9399b6533be347ebeffbb915 to your computer and use it in GitHub Desktop.
Save Doz12/1643b38c9399b6533be347ebeffbb915 to your computer and use it in GitHub Desktop.
from abc import ABC, ABCMeta, abstractmethod
class ede(ABC):
cook = "Your food is cooked"
def foods(self):
return self.cook
class Kare_Kare(ede):
cook = "Kare-Kare is cooked"
class Menudos(ede):
cook = "Menudo is cooked"
class sinigang(ede):
cook = "Sinigang na Baboy is cooked"
class giniling(ede):
cook = "Giniling is cooked"
class sisig(ede):
cook = "Sisig is cooked"
class liempo(ede):
cook = "Liempo is cooked"
class dinuguan(ede):
cook = "Dinuguan is cooked"
class extra(ede):
cook = "ExtraRice is cooked"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment