Skip to content

Instantly share code, notes, and snippets.

@pallavg55
Last active August 18, 2017 11:12
Embed
What would you like to do?
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment