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 trial

Python Dates and Times in Python (2014) Dates and Times strftime & strptime

Create a function named to_string that takes a datetime and gives back a string in the format "24 September 2012".

Can you please help

timestrings.py
## 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(dateTime):
    dateTime = datetime.strptime('24 09 12', '%d %B %Y')
    return to_string()

3 Answers

Hi there,

You don't want to hard code the date - pass a date variable into the method as a parameter and manipulate its format inside the method, returning the formatted string.

You have the format correct so, you just need to reformat your argument, dateTime (not '24 09 12). You might also need to chain another .datetime before your strftime method?

And then you want to return the modified string, not make another call to the method.

Let me know how you get on.

Steve.

def from_string(date, string_format): return datetime.datetime.strptime(date, string_format)

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(datetime): date_time_str = "09/24/12 18:30" return datetime.strftime("%d %B %Y")

Emmanuel Ezekiel
Emmanuel Ezekiel
2,715 Points

import datetime def to_string(datetime_object): date_format = datetime_object.strftime('%d %B %Y') return date_format