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

Carlos Caro
Carlos Caro
9,528 Points

What is a POSIX timestamp? I'm looking for its definition. The documentation doesn't explain the concept behind it.

i have read the documentation and i am very clear about what it is supposed to return

3 Answers

Steven Parker
Steven Parker
230,039 Points

It's simply the time expressed as the number of seconds that have passed since January 1, 1970. That zero moment, known as the epoch, is simply the start of the decade in which the Unix operating system (which first used this time representation) was invented.

Carlos Caro
Carlos Caro
9,528 Points

thanks for the answer!