I have a Python list called results. Each result in the results list has a person object, and each person object has a birthdate (result.person.birthdate). The birthdate is a datetime object.
I would like to order the list by birthdate with the oldest first. What is the most Pythonic way to do this?