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) Dates and Times Dating Methods

Tulio Marquez
Tulio Marquez
5,245 Points

Why for the strftime we need to use the notation "datetime.strftime" and for the strptime "datetime.datetime.strptime"?

the instructor to call the method for strftime only uses one dot "datetime.strftime", but for the strptime method it uses 2 dots "datetime.datetime.strptime" why is this?

1 Answer

Hi Tulio Marquez in this particular video Kenneth calls now.strftime('%B %d'). now was a variable that was given the value of datetime.datetime.now(). So both strftime and strptime are taking 2 datetimes technically. I understand the confusion though! Datetimes are tricky, but just keep on practicing!

Tip: If you wanted to only have to type one datetime, you can do from datetime import datetime for your import rather than import datetime.