On Aug 3, 11:50 am, Doug Van Horn <[EMAIL PROTECTED]> wrote:
> On Aug 3, 6:37 am, Bram - Smartelectronix <[EMAIL PROTECTED]>
> wrote:
[snip]

You see, you learn something new every day.  Based on Nis Jørgensen's
post above, here's a refined age function using the fancy tuple
comparison I didn't know about:

>>> def age(d, bday):
...     return (d.year - bday.year) - \
...         ((d.month, d.day) < (bday.month, bday.day) and 1 or 0)

This new function has the added bonus of having the argument names
correct.  :-)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to