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 trialBrent Liang
Courses Plus Student 2,944 PointsCode challenge question
Question asks to write a function named delorean that takes an integer &return a datetime that is that many hours ahead.
What's wrong with my code?
import datetime
def delorean (num):
starter = datetime.datetime(2015, 10, 21, 16, 29)
endtime = starter + datetime.timedelta (hours = num)
return endtime
2 Answers
Ryan S
27,276 PointsHi Brent,
The issue is that the "starter" variable that was defined for you in the challenge must remain outside of the function. You incorporated it into your function and that is why it is not passing.
Good luck.
Brent Liang
Courses Plus Student 2,944 PointsThank you Ryan!!