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 trialChris Ochsenreither
4,350 Pointstime_tango
I can't figure out why my code isn't accepted because it passes in IDLE.
import datetime
def time_tango(d, t):
_date = d.strftime('%y-%m-%d')
_time = d.strftime('%H:%M')
_datetime = datetime.datetime.strptime(_date + ' ' + _time, '%y-%m-%d %H:%M')
return _datetime
2 Answers
William Li
Courses Plus Student 26,868 PointsWrite a function named time_tango that takes a date and a time. It should combine them into a datetime and return it.
You can make use of the datetime.combine() method from the datetime module to combine date and time objects together.
import datetime
def time_tango(d, t):
return datetime.datetime.combine(d, t)
Emmet Lowry
10,196 PointsWow its that easy thought it was going to be really hard
Chris Ochsenreither
4,350 PointsChris Ochsenreither
4,350 PointsThanks, that definitely answers it.