在python 2.7中你知道如何将9/21/2017 1:00:00 PM
转换为9/21/2017 13:00:00
吗?
我的数据位于df['entime']
列的数据框中,格式如下:
9/21/2017 1:00:00 PM
我尝试使用df['entime'] = pd.to_datetime(df['entime'])
然后更改格式:df['entime'].strftime('%Y/%m/%d hh:mm:ss')
由于
答案 0 :(得分:0)
<强>解强>
功能适用:
pd.to_datetime(dftime['enttime']).apply(lambda x:x.strftime('%Y/%m/%d %H:%M:%S'))