when trying to convert string object into date…
here s is a string..
======datetime_new.py============
s="05/30/2013:10:47:34"
mytime = time.strptime(s, "%m/%d/%Y %H:%M:%S")
print mytime
getting an error like:
ValueError: time data '05/30/2013:10:47:34' does not match format '%m/%d/%Y %H:%M:%S'