Skip to content

Instantly share code, notes, and snippets.

@pallavg55
Last active August 18, 2017 11:38
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save pallavg55/30f4c3e551806a6861a5135fd8eb3bb9 to your computer and use it in GitHub Desktop.
class Animal:
"""Animal class"""
def __init__(self, name):
"""Initialize Animal"""
self.name = name
def animal_name(self):
"""Return animal name"""
return "This is a {}".format(self.name)
@staticmethod
def message():
"""Return message"""
return "Love animals!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment