python pandas date time conversion to date
问题 I am looking to convert datetime to date for a pandas datetime series. I have listed the code below: df = pd.DataFrame() df = pandas.io.parsers.read_csv("TestData.csv", low_memory=False) df['PUDATE'] = pd.Series([pd.to_datetime(date) for date in df['DATE_TIME']]) df['PUDATE2'] = datetime.datetime.date(df['PUDATE']) #Does not work Can anyone guide me in right direction? 回答1: You can access the datetime methods of a Pandas series by using the .dt methods (in a aimilar way to how you would