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 trialEllie Henry
1,521 PointsWhy does this work in IDLE, but not on here?
I am working on the time_tango question in the Dates and Times module. I always write my code out in IDLE first and test it there, then paste it over into the code section here. My code runs fine in IDLE, but it fails here, and doesn't give me a reason, just "Bummer! Try again.". Here is my code for it.
import datetime def time_tango(date, time): new_date = date + " " + time my_datetime = datetime.datetime.strptime(new_date, "%m/%d/%Y %H:%M:%S") return(my_datetime)
import datetime
def time_tango(date, time):
new_date = date + " " + time
my_datetime = datetime.datetime.strptime(new_date, "%m/%d/%Y %H:%M:%S")
return(my_datetime)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsIn the challenge, the date
and time
are datetime
objects, not strings. So trying when the code concatenates them, it is converting them to a string, then using strptime
the code generates a new datetime
object. This can be all done with the datetime.combine
method:
# Task 1 of 1
# Write a function named 'time_tango' that takes a 'date' and a 'time'.
# It should combine them into a datetime and return it.
import datetime
def time_tango(date, time):
return datetime.datetime.combine(date, time)