ValueError: time data '03-10-2011 04:35 PM' does not match format '%m-%d-%Y %I:M %p'
That looks like it matches to me?
datetime = datestr + " " + timestr
date_struct = time.strptime(datetime, "%m-%d-%Y %I:M %p")
|
|
|
You are missing a
|
|||
|
|
|
Those datetime format strings work both ways, so you can easily check hypotheses such as "looks like it matches":
|
|||
|
|