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 trialEmily Strobl
5,429 Pointsim a little confused on how to use the replace method
please help me
import datetime
now=datetime.datetime.now()
2 Answers
KRIS NIKOLAISEN
54,971 PointsSee the previous video @ 2:29.
KRIS NIKOLAISEN
54,971 PointsOr 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.
Emily Strobl
5,429 PointsEmily Strobl
5,429 Pointsvideo was no help