Skip to content

Instantly share code, notes, and snippets.

@jjcall
Created February 28, 2013 01:01
Show Gist options
  • Save jjcall/5053318 to your computer and use it in GitHub Desktop.
Save jjcall/5053318 to your computer and use it in GitHub Desktop.
class Person(object):
DUDES = ["Jason", "Eric"]
def __init__(self, name, age):
self.name = name
self.age = age
def greet_dudes(self)
for name in Person.DUDES:
print "Hello " + name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment