Skip to content

Instantly share code, notes, and snippets.

@lakinwecker
Created June 19, 2012 22:41
Show Gist options
  • Save lakinwecker/2956959 to your computer and use it in GitHub Desktop.
Save lakinwecker/2956959 to your computer and use it in GitHub Desktop.
def get_name_grouping(self):
first_letter = self.name[0]
if first_letter in ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9"):
return "0-9"
return first_letter
grouping = property(get_name_grouping)
@bradyjfrey
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment