This should be a very simple solution.
I'm reading dates from a columnar array and getting an error due to a mismatch in format:
ValueError: time data "['140209/1729']" does not match format '%y%m%d/%H%M'
I've tried throwing in [] while looping through the values, but it does not like the format.
xdates = [datetime.datetime.strptime(str(formdate),'%y%m%d/%H%M') for formdate in DATE]
Would there be a better way to define these at dates when doing a np.genfromtxt?