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 now() and .replace()

im a little confused on how to use the replace method

please help me

dt.py
import datetime
now=datetime.datetime.now()

2 Answers

See the previous video @ 2:29.

video was no help

Or you could see the example in the teacher's notes (or in the docs). The one in the teacher's notes is close to what the challenge is asking:

>>> import datetime
>>> now = datetime.datetime.now()
>>> morning = now.replace(hour=9, minute=0)

You basically can take an existing date and replace parts by specifying the date part to replace along with a new value. The above takes now and replaces the hour with 9 and the minute with 0.