Skip to content

Instantly share code, notes, and snippets.

@pallavg55
Last active August 18, 2017 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pallavg55/40329b081d388db8ed1909dc48b28a6b to your computer and use it in GitHub Desktop.
Save pallavg55/40329b081d388db8ed1909dc48b28a6b to your computer and use it in GitHub Desktop.
class Animal:
"""Animal class"""
def __init__(self, legs):
"""Initialize animal"""
self.legs = legs
@classmethod
def change_legs(cls):
"""Change legs for animal."""
return cls(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment