Skip to content

Instantly share code, notes, and snippets.

@hltbra
Created January 4, 2013 13:29
Show Gist options
  • Select an option

  • Save hltbra/4452592 to your computer and use it in GitHub Desktop.

Select an option

Save hltbra/4452592 to your computer and use it in GitHub Desktop.
class Person(object):
def __init__(self, name):
self.name = name
people = [Person('hugo'), Person('igor')]
for p in people:
print p.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment