Skip to content

Instantly share code, notes, and snippets.

@pgainda
Created October 27, 2013 15:31
Show Gist options
  • Save pgainda/7183761 to your computer and use it in GitHub Desktop.
Save pgainda/7183761 to your computer and use it in GitHub Desktop.
class Animal(object):
def __init__(self, name):
self.name = name
zebra = Animal("Jeffrey")
print zebra.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment