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 trialMoatazBellah Ghobashy
9,518 PointsI don't know where the problem
!!!!!!!!!!!!!!!!!!!!!!!
import datetime
starter = datetime.datetime(2015, 10, 21, 16, 29)
def delorean(intr):
x = ( starter - datetime.timedelta(hours=intr))
return x.strftime('%H:%M')
1 Answer
Ryan S
27,276 PointsHi MoatazBellah,
You are very close. Just a couple things. First it asks you to return a datetime that is "intr" number of times ahead of starter. So you will need to add instead of subtract. Second, you need to return a datetime, not a string as you have done (using strftime()). So you can simply return x.
import datetime
starter = datetime.datetime(2015, 10, 21, 16, 29)
def delorean(intr):
x = starter + datetime.timedelta(hours=intr)
return x
or you can leave out the x variable entirely:
import datetime
starter = datetime.datetime(2015, 10, 21, 16, 29)
def delorean(intr):
return starter + datetime.timedelta(hours=intr)