在Python中解析年,月,日,小时,分钟,秒

时间:2014-11-24 19:25:21

标签: python pandas ipython

我有一个带标题的csv文件,它们是: 年,月,日,小时,分钟,秒,firstName

我在Python中有以下代码:

import pandas as pd
from datetime import datetime
parse = lambda x: datetime.strptime(x, '%Y-%m-%d %H:%M:%S')
df = pd.read_csv('filename.csv',  
           parse_dates={'Date/Time': ['year', 'month', 'day', 'hour', 'minute', 'second']}, 
            index_col=0)
df[:5]

显示表格时,日期/时间列显示为

日期/时间
2013 6 26 18 57 22

而不是

日期/时间
2013-6-26 18:57:22

任何帮助将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:0)

更改您的parser并按照以下方式使用它:

import pandas as pd
from datetime import datetime

def parse(year, month, day, hour, minute, second):
    return year+ '-' +month+ '-' +day+ ' ' +hour+ ':' +minute+ ':' +second

df = pd.read_csv('test.csv', parse_dates={'Date/Time':['year', 'month', 'day', 'hour', 'minute', 'second']}, 
           date_parser=parse,
           index_col=0)