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 trialLihua Yao
4,218 Pointstime tango input object type
Write a function named time_tango that takes a date and a time. It should combine them into a datetime and return it.
I consider these two argument s "a date" and "a time" as date and time object. below is my code. but it just returns "try again".
import datetime
def time_tango(the_date, the_time):
return datetime.datetime.combine(the_date, the_time)
Kenneth Love , could you specify more about this exercise? I saw a lot of people asking question about this one. Thanks.
1 Answer
Steven Parker
232,176 PointsThis code looks OK to me. So I copy/pasted it directly into the challenge and it passed!
So I'd also say "try again" (using the same code).
And FYI, Kenneth is no longer on the staff at Treehouse.