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 trialbob simple
Courses Plus Student 3,385 Pointswhat format are date and time in?
Ho do I tell what format date and time are in, are they str?
import datetime
def time_tango(date, time):
return datetime.datetime.strptime(str(date) + " " + str(time), "%Y-%m-%d %H:%M")
1 Answer
Dan Johnson
40,533 PointsThe challenge expects a datetime
object, so you don't have to deal with formatting. There's a method specifically for combining date
and time
objects into a datetime
, combine.
For checking types you can use the built in functions type or isinstance. Though you won't need that for this challenge here's an example:
isinstance("", str)
This will return True
.