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

Timestamps

I don't understand Timestamps, and I can't find any video where we went over them.

I've read about timestamps in the docs but when the docs explain timestamps its as if they assume you already know about timestamps.

Can someone explain? Thanks!

timestamp.py
# If you need help, look up datetime.datetime.fromtimestamp()
# Also, remember that you *will not* know how many timestamps
# are coming in.

1 Answer

Logan R
Logan R
22,989 Points

Hi!

A POSIX timestamp is the number of seconds since January 1, 1970. It's used as a way to try and standardized time from a fixed point.

The list he is passing to you would just be a list of floats, IE: [3484545.454, 144546.34345]

You can read more about the POSIX timestamp here:

https://en.wikipedia.org/wiki/Unix_time

You are right, he does just kind of glaze over what a timestamp is.