I am trying to create a dataframe from csv, and its first column is like
\"2013-08-25T00:00:00-0400\"; \"2013-08-25T01:00:00-0400\"; \"2013-08-25T02:00:00-04
If you are using pandas, you can try
pandas
df['time'] = pd.to_datetime(df['time'])