Skip to content

Instantly share code, notes, and snippets.

@ryonsherman
Created November 6, 2013 16:40
Show Gist options
  • Save ryonsherman/a1da3bc38f83023a73ee to your computer and use it in GitHub Desktop.
Save ryonsherman/a1da3bc38f83023a73ee to your computer and use it in GitHub Desktop.
def ordinal(n):
return str(n) + ('th' if 10 <= n % 100 < 20 else {1:'st', 2:'nd', 3:'rd'}.get(n % 10, 'th'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment