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 trialdevssm
16,670 Points'datetime.datetime' object has no attribute 'timestamp'
Whenever I try to do, now.timestamp() I get 'datetime.datetime' object has no attribute 'timestamp' is it because I am using Python 2.7 ? Checking on the "now" variable using dir() I get no timestamp attribute.
1 Answer
Leslie B
11,642 PointsHi Daniel,
It is indeed because you run on Python 2. https://docs.python.org/2/library/datetime.html
devssm
16,670 Pointsdevssm
16,670 PointsThanks, appreciate the info.