Last active
August 29, 2015 14:19
-
-
Save gammy/4981953fad656d982a7d to your computer and use it in GitHub Desktop.
This file contains hidden or 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 dog(): | |
| name = None | |
| def __init__(self, name): | |
| self.name = name | |
| def bark(self): | |
| return(self.name + ": arf arf!") | |
| def puke(self): | |
| print(self.name + ": Bläeh!") | |
| return("*puke*") | |
| pelle = dog("Pelle") | |
| bengt = dog("Bengt") | |
| print(pelle.bark()) | |
| print(bengt.puke()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment