vote up 2 vote down star
1

I'm wondering if there is a quick and easy way to output ordinals given a number in python.

For example, given the number 1, I'd like to output "1st", the number 2, "2nd", et cetera, et cetera.

This is for working with dates in a breadcrumb trail

Home >  Venues >  Bar Academy >  2009 >  April >  01

is what is currently shown

I'd like to have something along the lines of

Home >  Venues >  Bar Academy >  2009 >  April >  1st
flag

3 Answers

vote up 3 vote down check

Or shorten David's answer with:

if 4 <= day <= 20 or 24 <= day <= 30:
    suffix = "th"
else:
    suffix = ["st", "nd", "rd"][day % 10 - 1]

Attribution.

link|flag
I did not know about the "if x <= y <= z" syntax, couldn't believe it would work and tried it. Looks like I should re-read the Python doc again :) – Chris Cameron Apr 11 at 0:55
That way is kind of hard to generalize though - it gets clunky if you want to use it for arbitrary numbers. – David Apr 11 at 1:02
True, but the OP was asking about ordinal dates. Since YAGNI, it would be better to choose the shorter, more elegant solution that meets his needs, even if it's not generalizable. If someone wants a generalized solution, your's is good, though I'd probably use a list rather than the elseifs. – Chris Upchurch Apr 11 at 1:44
vote up 5 vote down

Here's a more general solution:

def ordinal(n):
    if 10 <= n % 100 < 20:
        return str(n) + 'th'
    else:
       return  str(n) + {1 : 'st', 2 : 'nd', 3 : 'rd'}.get(n % 10, "th")
link|flag
vote up 2 vote down

Except for 1st, 2nd, and 3rd, I think they all just add th... 4th, 5th, 6th, 11th, 21st ... oh, oops ;-)

I think this might work:

def ordinal(num):
     ldig = num % 10
     l2dig = ldig % 10
     if l2dig == 1:
         suffix = 'th'
     elif ldig == 1:
         suffix = 'st'
     elif ldig == 2:
         suffix = 'nd'
     elif ldig == 3:
         suffix = 'rd'
     else: 
         suffix = 'th'
     return '%d%s' % (num, suffix)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.