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 Dating Methods

ValueError : timedata does not match format

I have a function that accepts a date written by the user. This date is a string. I want to convert it to a date. I would write :

def user_date() : date = input("Enter Date (mm/dd/yyyy) ") my_date = datetime.datetime.strptime("date", "%m-%d-%Y")

I get the error : ValueError: time data 'user_input_date' does not match format '%m-%d-%Y'

Why is that?

1 Answer

boi
boi
14,242 Points
import datetime

def user_date() : 
    date = input("Enter Date (mm/dd/yyyy) ") 👈 #Here you used a slash ( / ), use hyphen ( - ) instead, because you 
                                                # declared a hyphen as a format not slash ( / ).     
    my_date = datetime.datetime.strptime("date", "%m-%d-%Y") 👈#You're "date" is a string literal, it should be a variable.
    return my_date

Fix

import datetime


def user_date():
    date = input("Enter Date (mm-dd-yyyy) ")
    return datetime.datetime.strptime(date, "%m-%d-%Y")