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()

Bar Kamhine
Bar Kamhine
434 Points

What is the problem?

import datetime now = datetime.datetime.now() now = two two = two.replace(minutes=30)

What exactly is incorrect?

dt.py
import datetime
two = datetime.datetime.now()
two = two.replace(minutes=30)

1 Answer

AJ Salmon
AJ Salmon
5,675 Points

It actually wants you to keep the hour set to 14, as well. Just add a comma after hour=14 and then type your minute=30.

import datetime
now = datetime.datetime.now()
two = now.replace(hour=14, minute=30)