本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1.字符串的格式转换为datetime
(1)利用dateutil这个库:
importdateutil t1=dateutil.parser.parse("2019-02-24T19:36:20-05:00") printtype(t1) print't1:',t1
(2)pandas中转换
parser.parse格式自由 order_data['start_time']=pd.to_datetime(order_data['start_time'],format="%Y-%m-%d%H:%M:%S")
2.datetime转换为字符串
利用apply和strftime。
data['md']=data['start_time'].apply(lambdax:x.strftime('%m-%d'))