Skip to content

Instantly share code, notes, and snippets.

@pheuter
Created November 1, 2011 19:10
Show Gist options
  • Save pheuter/1331574 to your computer and use it in GitHub Desktop.
Save pheuter/1331574 to your computer and use it in GitHub Desktop.
class Quote():
def __init__(self, elements):
self.elements = elements
def __str__(self):
return "["+", ".join([str(e) for e in self.elements])+"]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment