Skip to content

Instantly share code, notes, and snippets.

@ties
Created August 9, 2012 12:59
Show Gist options
  • Save ties/3303992 to your computer and use it in GitHub Desktop.
Save ties/3303992 to your computer and use it in GitHub Desktop.
namedtuple + property = elegant
from collections import namedtuple
class Resolution(namedtuple('_Resolution', ['width', 'height'])):
@property
def pixels(self):
return self.width * self.height
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment