Last active
June 9, 2019 04:55
-
-
Save jonascheng/ecdbc86a7c5875cde7b1c331044fde0a to your computer and use it in GitHub Desktop.
SOLID-PenguinClass
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 Penguin(Bird): | |
def walk(self): | |
return 1 | |
def fly(self): | |
raise Exception('I cant fly') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment