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 trialRutendo Chaurura
6,809 PointsI need help with the following question
Create a function named to_string that takes a datetime and gives back a string in the format "24 September 2012"
Here is my code
import datetime
def to_string(date_time): date_time = datetime.datetime.strptime('24-09-2012', '%d-%m%Y') return date_time
## Examples
# to_string(datetime_object) => "24 September 2012"
# from_string("09/24/12 18:30", "%m/%d/%y %H:%M") => datetime
import datetime
def to_string(date_time):
date_time = datetime.datetime.strftime('24-09-2014', '%d-%m-%Y')
date_time = datetime.datetime()
return date_time
1 Answer
Maciej DeliΕ
4,891 Pointsfunction takes a datetime and gives back a string
import datetime
def to_string(date_time):
return date_time.strftime("%d %B %Y")
to_string(datetime.datetime.now())