Skip to content

Instantly share code, notes, and snippets.

@alvaromuir
Last active December 30, 2015 01:48
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 alvaromuir/7758004 to your computer and use it in GitHub Desktop.
Save alvaromuir/7758004 to your computer and use it in GitHub Desktop.
Python Ordinals
def ordinal(n):
if 4 <= n <= 20 or 24 <= n <= 30:
return n + 'th'
else:
return str(n) + ["st", "nd", "rd"][n % 10 - 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment