Skip to content

Instantly share code, notes, and snippets.

@newzealandpaul
Created December 2, 2008 08:21
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 newzealandpaul/31057 to your computer and use it in GitHub Desktop.
Save newzealandpaul/31057 to your computer and use it in GitHub Desktop.
class Felicitations(object):
def __init__(self):
self.felicitations = [ ]
def addon(self, word):
self.felicitations.append(word)
def printme(self):
greeting = string.join(self.felicitations[0:], "")
print greeting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment