Created
July 9, 2012 15:00
-
-
Save Drvanon/3077030 to your computer and use it in GitHub Desktop.
subclassing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Material(object): | |
self.material = True | |
def build_with(self): | |
del self | |
class Organic(Material): | |
self.organic = True | |
class Metal(Material): | |
self.organic = False | |
class Iron(Metal): | |
self.hardness = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment