我的格式如下:
fecha='2018-03-03T00:00:00.000Z'
我已经在pandas doc中检查了可以应用于日期的不同格式,但是我找不到某种方式美化它以获得此输出的格式:
March-18
尽我所能:
fecha_fto=(pd.to_datetime(fecha[0:10])).strftime('%m-%Y')
输出
03-2018
无论如何,日期可能以某种方式形成以获得所需的输出吗?
答案 0 :(得分:1)
便利的网站 - http://strftime.org/
使用'%B-%y'
pd.to_datetime('2018-03-03T00:00:00.000Z').strftime('%B-%y')
'March-18'