Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Dates and Times in Python (2014) Let's Build a Timed Quiz App Timestamp Ordering

TIMESTAMP

Hi Team, ok, I have several POSIX arguments in tuple from. I convert them to list. Then when I sort the list with .sort(), I understand that the first element is the oldest, so i apply fromtimestamp to convert it to datetime format. i asl??? What am i doing wrong???

timestamp.py
from datetime import datetime

def timestamp_oldest(*args):
    listt_s = list(args)
    obj_time = listt_s.sort()
    return datetime.fromtimestamp(obj_time[0])

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Javier Perez Narvaez, you’ve got the idea but the wrong variable.

The method sort() updates a list in place. Therefore listt_s[0] holds the POSIX value you seek.

Post back if you need more help. Good luck!!!