字符串列转为datetime列、Timestamp转为datetime 类型

字符串列转为datetime列、Timestamp转为datetime 类型,第1张

Pandas Series 字符串类型转为datetime类型

s = pd.Series(['2017-11-24 00:00:00','2017-11-25 00:00:00','2017-11-26 00:00:00'])
s  
#0    2017-11-24 00:00:00
#1    2017-11-25 00:00:00
#2    2017-11-26 00:00:00
#dtype: object

ts = pd.to_datetime(s)
ts
#0   2017-11-24
#1   2017-11-25
#2   2017-11-26
#dtype: datetime64[ns]

字符串对象转Timestamp对象

p3=pd.Timestamp("2017-6-19 9:13:45")
 
print("type of p3:",type(p3))
print(p3)

输出
('type of p3:', )
2017-06-19 09:13:45

Timestamp对象转datetime对象

p3=pd.Timestamp("2017-6-19 9:13:45")

输出 
p3.to_pydatetime()
Out[12]: datetime.datetime(2017, 6, 19, 9, 13, 45)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/798266.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存