Skip to content

Instantly share code, notes, and snippets.

@gammy
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save gammy/4981953fad656d982a7d to your computer and use it in GitHub Desktop.

Select an option

Save gammy/4981953fad656d982a7d to your computer and use it in GitHub Desktop.
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